watchdog: hpwdt: fix unused variable warning
authorArnd Bergmann <arnd@arndb.de>
Wed, 6 Dec 2017 21:02:37 +0000 (22:02 +0100)
committerWim Van Sebroeck <wim@iguana.be>
Thu, 28 Dec 2017 19:45:55 +0000 (20:45 +0100)
commitaeebc6ba88ba3758ad95467ff6191fabf2074c13
tree1583e01d0bd697768f4df43842fedd3b75aa7e49
parent13983959e804691b09322c2c8d71cd94f365655f
watchdog: hpwdt: fix unused variable warning

The new hpwdt_my_nmi() function is used conditionally, which produces
a harmless warning in some configurations:

drivers/watchdog/hpwdt.c:478:12: error: 'hpwdt_my_nmi' defined but not used [-Werror=unused-function]

This moves it inside of the #ifdef that protects its caller, to silence
the warning.

Fixes: 621174a92851 ("watchdog: hpwdt: Check source of NMI")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Jerry Hoemann <jerry.hoemann@hpe.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>
drivers/watchdog/hpwdt.c