diff options
author | Tom Rini <trini@ti.com> | 2012-05-14 12:38:18 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 14:07:21 +0200 |
commit | 2ab281037555de1710aa597531562fe071470198 (patch) | |
tree | c1338e35ac8b84797182b5e9a44a171f54c57e15 /board/ti/am335x | |
parent | d1df0fd37388fe0dc77a75f5aece04f70cc3f7e6 (diff) | |
download | u-boot-imx-2ab281037555de1710aa597531562fe071470198.zip u-boot-imx-2ab281037555de1710aa597531562fe071470198.tar.gz u-boot-imx-2ab281037555de1710aa597531562fe071470198.tar.bz2 |
am33xx: Do not call init_timer twice
We do not need to call init_timer both in SPL and U-Boot itself, just
SPL needs to initialize the timer.
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'board/ti/am335x')
-rw-r--r-- | board/ti/am335x/evm.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/board/ti/am335x/evm.c b/board/ti/am335x/evm.c index 13dc603..5e2d53a 100644 --- a/board/ti/am335x/evm.c +++ b/board/ti/am335x/evm.c @@ -29,17 +29,6 @@ DECLARE_GLOBAL_DATA_PTR; /* * Basic board specific setup */ -int init_basic_setup(void) -{ - /* Initialize the Timer */ - init_timer(); - - /* address of boot parameters */ - gd->bd->bi_boot_params = PHYS_DRAM_1 + 0x100; - - return 0; -} - int board_init(void) { enable_uart0_pin_mux(); @@ -49,7 +38,7 @@ int board_init(void) i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); #endif - init_basic_setup(); + gd->bd->bi_boot_params = PHYS_DRAM_1 + 0x100; return 0; } |