diff options
author | Timur Tabi <timur@freescale.com> | 2011-04-28 15:01:29 -0500 |
---|---|---|
committer | Kim Phillips <kim.phillips@freescale.com> | 2011-07-06 19:09:28 -0500 |
commit | f5f30dea2a133e5393eef306c43eb173ff0e9fc2 (patch) | |
tree | bd411e1d851019acd50a0131ba658702edb26f57 /board | |
parent | 7fb3e7a2d64b902e423c9e5a3aedc1f4179ac27d (diff) | |
download | u-boot-imx-f5f30dea2a133e5393eef306c43eb173ff0e9fc2.zip u-boot-imx-f5f30dea2a133e5393eef306c43eb173ff0e9fc2.tar.gz u-boot-imx-f5f30dea2a133e5393eef306c43eb173ff0e9fc2.tar.bz2 |
powerpc/83xx: remove empty board_early_init_f()
Remove an empty board_early_init_f() from the MPC8323ERD and MPC360ERDK boards.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/mpc8323erdb/mpc8323erdb.c | 5 | ||||
-rw-r--r-- | board/freescale/mpc8360erdk/mpc8360erdk.c | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/board/freescale/mpc8323erdb/mpc8323erdb.c b/board/freescale/mpc8323erdb/mpc8323erdb.c index 7a0ff18..f29b2f4 100644 --- a/board/freescale/mpc8323erdb/mpc8323erdb.c +++ b/board/freescale/mpc8323erdb/mpc8323erdb.c @@ -66,11 +66,6 @@ const qe_iop_conf_t qe_iop_conf_tab[] = { {0, 0, 0, 0, QE_IOP_TAB_END}, /* END of table */ }; -int board_early_init_f(void) -{ - return 0; -} - int fixed_sdram(void); phys_size_t initdram(int board_type) diff --git a/board/freescale/mpc8360erdk/mpc8360erdk.c b/board/freescale/mpc8360erdk/mpc8360erdk.c index 2baa11a..99c0fbb 100644 --- a/board/freescale/mpc8360erdk/mpc8360erdk.c +++ b/board/freescale/mpc8360erdk/mpc8360erdk.c @@ -207,11 +207,6 @@ const qe_iop_conf_t qe_iop_conf_tab[] = { {0, 0, 0, 0, QE_IOP_TAB_END}, }; -int board_early_init_f(void) -{ - return 0; -} - int board_early_init_r(void) { void *reg = (void *)(CONFIG_SYS_IMMR + 0x14a8); |