microblaze: Fix watchdog initialization

The patch:
"blackfin: Move blackfin watchdog driver out of the blackfin arch folder."
(sha1: e9a389a184)
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>
This commit is contained in:
Michal Simek
2013-10-16 09:06:32 +02:00
committed by Tom Rini
parent 100ea07e33
commit 8c4dba1a5e
3 changed files with 5 additions and 8 deletions

View File

@@ -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.");
}