diff options
| author | Michal Simek <michal.simek@xilinx.com> | 2013-10-16 09:06:32 +0200 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-10-16 09:24:38 -0400 | 
| commit | 8c4dba1a5e5ff67380ae8d54fd5756e44dc2da59 (patch) | |
| tree | 3d6eb0b2ff42179bad5e5d9da3127d855c22726b /drivers/watchdog/xilinx_tb_wdt.c | |
| parent | 100ea07e331b7898dc774aeba108d66bdd5a5cf5 (diff) | |
| download | olio-uboot-2014.01-8c4dba1a5e5ff67380ae8d54fd5756e44dc2da59.tar.xz olio-uboot-2014.01-8c4dba1a5e5ff67380ae8d54fd5756e44dc2da59.zip | |
microblaze: Fix watchdog initialization
The patch:
"blackfin: Move blackfin watchdog driver out of the blackfin arch folder."
(sha1: e9a389a18477c1c57a0b30e9ea8f4d38c6e26e63)
changed hw_watchdog_init() prototype which didn't match
with Microblaze one.
This patch fixes the driver and Microblaze initialization.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'drivers/watchdog/xilinx_tb_wdt.c')
| -rw-r--r-- | drivers/watchdog/xilinx_tb_wdt.c | 6 | 
1 files changed, 2 insertions, 4 deletions
| diff --git a/drivers/watchdog/xilinx_tb_wdt.c b/drivers/watchdog/xilinx_tb_wdt.c index 4e46e4cef..6336c9488 100644 --- a/drivers/watchdog/xilinx_tb_wdt.c +++ b/drivers/watchdog/xilinx_tb_wdt.c @@ -54,7 +54,7 @@ static void hw_watchdog_isr(void *arg)  	hw_watchdog_reset();  } -int hw_watchdog_init(void) +void hw_watchdog_init(void)  {  	int ret; @@ -65,7 +65,5 @@ int hw_watchdog_init(void)  	ret = install_interrupt_handler(CONFIG_WATCHDOG_IRQ,  						hw_watchdog_isr, NULL);  	if (ret) -		return 1; - -	return 0; +		puts("Watchdog IRQ registration failed.");  } |