mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
Fix typo in MPC5XXX code (pointed out by Victor Wren)
This commit is contained in:
parent
af6d1dfc7f
commit
b96619a117
2 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,8 @@
|
|||
Changes since U-Boot 1.0.0:
|
||||
======================================================================
|
||||
|
||||
* Fix type in MPC5XXX code (pointed out by Victor Wren)
|
||||
|
||||
* Enabled password check on RMU board
|
||||
|
||||
* Fix configuration problem with IceCube in LOWBOOT configuration:
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue