diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2013-04-07 10:02:37 (GMT) |
---|---|---|
committer | Sonic Zhang <sonic.zhang@analog.com> | 2013-05-13 08:30:26 (GMT) |
commit | e9a389a18477c1c57a0b30e9ea8f4d38c6e26e63 (patch) | |
tree | 4e0c9e5c15d316a8e16c10c428e44e41bf58e1b5 /arch/blackfin/cpu/Makefile | |
parent | 13262d4cdab79b6ee8d9c6089f84132a4c9372a4 (diff) | |
download | u-boot-e9a389a18477c1c57a0b30e9ea8f4d38c6e26e63.tar.xz |
blackfin: Move blackfin watchdog driver out of the blackfin arch folder.
- Enable hw_watchdog_init() in watchdog.h if CONFIG_HW_WATCHDOG is defined.
- Move blackfin hw watchdog driver to the generic driver folder.
- Call hw_watchdog_init() from blackfin board init code.
- Reuse macro CONFIG_WATCHDOG_TIMEOUT_MSECS
- Update README.watchdog accordingly
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Diffstat (limited to 'arch/blackfin/cpu/Makefile')
-rw-r--r-- | arch/blackfin/cpu/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/blackfin/cpu/Makefile b/arch/blackfin/cpu/Makefile index 0a72ec5..145f63e 100644 --- a/arch/blackfin/cpu/Makefile +++ b/arch/blackfin/cpu/Makefile @@ -25,7 +25,6 @@ COBJS-y += os_log.o COBJS-y += reset.o COBJS-y += serial.o COBJS-y += traps.o -COBJS-$(CONFIG_HW_WATCHDOG) += watchdog.o SRCS := $(SEXTRA:.o=.S) $(SOBJS:.o=.S) $(COBJS-y:.o=.c) OBJS := $(addprefix $(obj),$(COBJS-y) $(SOBJS)) |