diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2010-11-30 15:01:28 -0600 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-11-30 22:11:19 +0100 |
commit | b194577b2995eacbd2a3769269f0af1bc5e22530 (patch) | |
tree | 375a09de7144df6e527ba3c91de5396ded94cec2 /board/freescale/p2020ds | |
parent | a55bb8340ba8682782f816f0b9b3de13e5512e28 (diff) | |
download | u-boot-imx-b194577b2995eacbd2a3769269f0af1bc5e22530.zip u-boot-imx-b194577b2995eacbd2a3769269f0af1bc5e22530.tar.gz u-boot-imx-b194577b2995eacbd2a3769269f0af1bc5e22530.tar.bz2 |
hwconfig: Fix dummy initialization of {board, cpu}_hwconfig
Since board_hwconfig & cpu_hwconfig are defined as weak and dont have a
default value they will get put into the BSS if they aren't defined
elsewhere. This is problematic as we try to utilize hwconfig before
we've relocated and thus BSS isn't setup.
Instead of giving dummy values in the board files that utilize this
feature, we can just initialize the variables to an empty string and
thus move them out of the BSS if they aren't defined elsewhere.
Also made board_hwconfig & cpu_hwconfig arrays to reduce size associated
with string pointers vs arrays.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale/p2020ds')
-rw-r--r-- | board/freescale/p2020ds/p2020ds.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/freescale/p2020ds/p2020ds.c b/board/freescale/p2020ds/p2020ds.c index b507677..b05ef98 100644 --- a/board/freescale/p2020ds/p2020ds.c +++ b/board/freescale/p2020ds/p2020ds.c @@ -69,9 +69,6 @@ int checkboard(void) return 0; } -const char *board_hwconfig = "foo:bar=baz"; -const char *cpu_hwconfig = "foo:bar=baz"; - phys_size_t initdram(int board_type) { phys_size_t dram_size = 0; |