diff options
author | wdenk <wdenk> | 2003-12-05 21:08:38 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-12-05 21:08:38 +0000 |
commit | b96619a1176a714480930048b16fa717b3b2d53b (patch) | |
tree | 19d1b4410793a18608d0c9d2bcac8af4d7e379da /common | |
parent | af6d1dfc7f62a338f5b1c7b7642bebaacb254f1b (diff) | |
download | u-boot-imx-b96619a1176a714480930048b16fa717b3b2d53b.zip u-boot-imx-b96619a1176a714480930048b16fa717b3b2d53b.tar.gz u-boot-imx-b96619a1176a714480930048b16fa717b3b2d53b.tar.bz2 |
Fix typo in MPC5XXX code (pointed out by Victor Wren)
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_bootm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index c4a8685..78d4612 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -567,10 +567,10 @@ do_bootm_linux (cmd_tbl_t *cmdtp, int flag, kbd->bi_sccfreq /= 1000000L; kbd->bi_vco /= 1000000L; #endif /* CONFIG_8260 */ -#if defined(CONFIG_MPC5XXXX) +#if defined(CONFIG_MPC5XXX) kbd->bi_ipbfreq /= 1000000L; kbd->bi_pcifreq /= 1000000L; -#endif /* CONFIG_MPC5XXXX */ +#endif /* CONFIG_MPC5XXX */ } kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))hdr->ih_ep; |