diff options
author | Marek Vasut | 2015-08-10 22:17:46 +0200 |
---|---|---|
committer | Marek Vasut | 2015-08-23 11:56:20 +0200 |
commit | cc9429a5562489cf8a4eb0d722c36e1bdfde4907 (patch) | |
tree | 3907710cba63052981d266478ecea447fa134c4f /board/altera | |
parent | f6badb0d89ae1221c8aa83138632613f91a48715 (diff) |
arm: socfpga: Make the pinmux table const u8
Now that we're actually converting the QTS-generated header files,
we can even adjust their data types. A good candidate for this is
the pinmux table, where each entry can have value in the range of
0..3, but each element is declared as unsigned long. By changing
the type to u8, we can save over 600 Bytes from the SPL, so do it.
This patch also constifies the array.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'board/altera')
-rw-r--r-- | board/altera/arria5-socdk/qts/pinmux_config.h | 2 | ||||
-rw-r--r-- | board/altera/cyclone5-socdk/qts/pinmux_config.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/altera/arria5-socdk/qts/pinmux_config.h b/board/altera/arria5-socdk/qts/pinmux_config.h index 5a714a37831..069d492d521 100644 --- a/board/altera/arria5-socdk/qts/pinmux_config.h +++ b/board/altera/arria5-socdk/qts/pinmux_config.h @@ -7,7 +7,7 @@ #ifndef __SOCFPGA_PINMUX_CONFIG_H__ #define __SOCFPGA_PINMUX_CONFIG_H__ -unsigned long sys_mgr_init_table[] = { +const u8 sys_mgr_init_table[] = { 0, /* EMACIO0 */ 2, /* EMACIO1 */ 2, /* EMACIO2 */ diff --git a/board/altera/cyclone5-socdk/qts/pinmux_config.h b/board/altera/cyclone5-socdk/qts/pinmux_config.h index aa282e17053..33cf1fdb64e 100644 --- a/board/altera/cyclone5-socdk/qts/pinmux_config.h +++ b/board/altera/cyclone5-socdk/qts/pinmux_config.h @@ -7,7 +7,7 @@ #ifndef __SOCFPGA_PINMUX_CONFIG_H__ #define __SOCFPGA_PINMUX_CONFIG_H__ -unsigned long sys_mgr_init_table[] = { +const u8 sys_mgr_init_table[] = { 3, /* EMACIO0 */ 3, /* EMACIO1 */ 3, /* EMACIO2 */ |