diff options
author | Piotr Wilczek <p.wilczek@samsung.com> | 2012-09-20 00:20:00 +0000 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2012-11-15 21:08:18 +0900 |
commit | 11a447983f0207e3a0146f4898a14b1d84365e2d (patch) | |
tree | a0a538436311b57804b6702b75dfbe1858c5d3dc /board/samsung/universal_c210/universal.c | |
parent | ea7991b8f14f258713e8a8ac89cdc6739d487383 (diff) | |
download | talos-obmc-uboot-11a447983f0207e3a0146f4898a14b1d84365e2d.tar.gz talos-obmc-uboot-11a447983f0207e3a0146f4898a14b1d84365e2d.zip |
arm:exynos4:universal: Eliminated low level init
Low level initialisation is done by another bootloader
Signed-off-by: Piotr Wilczek <p.wilczek@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/universal_c210/universal.c')
-rw-r--r-- | board/samsung/universal_c210/universal.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/board/samsung/universal_c210/universal.c b/board/samsung/universal_c210/universal.c index 7a4941c052..ded97ca312 100644 --- a/board/samsung/universal_c210/universal.c +++ b/board/samsung/universal_c210/universal.c @@ -32,6 +32,7 @@ #include <usb/s3c_udc.h> #include <asm/arch/cpu.h> #include <max8998_pmic.h> +#include <asm/arch/watchdog.h> DECLARE_GLOBAL_DATA_PTR; @@ -276,3 +277,10 @@ struct s3c_plat_otg_data s5pc210_otg_data = { .usb_flags = PHY0_SLEEP, }; #endif + +int board_early_init_f(void) +{ + wdt_stop(); + + return 0; +} |