diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-20 17:54:33 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-20 17:54:33 +0200 |
commit | ba999c531ed16ec749b2b6f4b0133cee38842b91 (patch) | |
tree | bb53f8360ca631cd77830dc50fa19e99bec60c5c /cpu/ppc4xx/cpu.c | |
parent | f836e4146088a46d9cd18bbd2f36447ea63e039c (diff) | |
download | u-boot-imx-ba999c531ed16ec749b2b6f4b0133cee38842b91.zip u-boot-imx-ba999c531ed16ec749b2b6f4b0133cee38842b91.tar.gz u-boot-imx-ba999c531ed16ec749b2b6f4b0133cee38842b91.tar.bz2 |
Cleanup compile warnings. Prepare for release 1.1.5
Diffstat (limited to 'cpu/ppc4xx/cpu.c')
-rw-r--r-- | cpu/ppc4xx/cpu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 6badfb1..f4a7208 100644 --- a/cpu/ppc4xx/cpu.c +++ b/cpu/ppc4xx/cpu.c @@ -190,9 +190,9 @@ int checkcpu (void) uint pvr = get_pvr(); ulong clock = gd->cpu_clk; char buf[32]; - char addstr[64] = ""; #if !defined(CONFIG_IOP480) + char addstr[64] = ""; sys_info_t sys_info; puts ("CPU: "); @@ -362,8 +362,8 @@ int checkcpu (void) #if defined(SDR0_PINSTP_SHIFT) printf (" Bootstrap Option %c - ", (char)bootstrap_option() + 'A'); printf ("Boot ROM Location %s\n", bootstrap_str[bootstrap_option()]); -#endif -#endif +#endif /* SDR0_PINSTP_SHIFT */ +#endif /* I2C_BOOTROM */ #if defined(CONFIG_PCI) printf (" Internal PCI arbiter %sabled", pci_arbiter_enabled() ? "en" : "dis"); |