diff options
author | Shile Zhang <shile.zhang@nokia.com> | 2017-04-10 22:39:33 +0800 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2017-05-18 18:51:44 +0200 |
commit | 455a9a60b6d4afb293b0e63ec75cc8e82912a767 (patch) | |
tree | 21d6197ab7e7fa5eccead4a71df54b6257b6c8cf /drivers/watchdog | |
parent | 0ddad77b90cb52075b5a9498f0621e3e265cc19f (diff) | |
download | talos-obmc-linux-455a9a60b6d4afb293b0e63ec75cc8e82912a767.tar.gz talos-obmc-linux-455a9a60b6d4afb293b0e63ec75cc8e82912a767.zip |
watchdog: wdt_pci: fix build error if define SOFTWARE_REBOOT
To fix following build error when SOFTWARE_REBOOT is defined:
CC [M] driver/watchdog/wdt_pci.o
driver/watchdog/wdt_pci.c: In function 'wdtpci_interrupt':
driver/watchdog/wdt_pci.c:335:3: error: too many arguments to function 'emergency_restart'
emergency_restart(NULL);
^
In file included from driver/watchdog/wdt_pci.c:51:0:
include/linux/reboot.h:80:13: note: declared here
extern void emergency_restart(void);
^
Signed-off-by: Shile Zhang <shile.zhang@nokia.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/wdt_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/wdt_pci.c b/drivers/watchdog/wdt_pci.c index 48b2c058b009..bc7addc2dc06 100644 --- a/drivers/watchdog/wdt_pci.c +++ b/drivers/watchdog/wdt_pci.c @@ -332,7 +332,7 @@ static irqreturn_t wdtpci_interrupt(int irq, void *dev_id) pr_crit("Would Reboot\n"); #else pr_crit("Initiating system reboot\n"); - emergency_restart(NULL); + emergency_restart(); #endif #else pr_crit("Reset in 5ms\n"); |