diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-09-28 17:17:11 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-09-28 17:17:11 -0400 |
commit | cda3b9178510297ac968b7e129e20caaaa66c581 (patch) | |
tree | fa707da793633dc220702a0782f4bde3045da754 | |
parent | 356ed043517dbceb646a9353831abde91062a395 (diff) |
watchdog: wdat_wdt: Fix warning for using 0 as NULL
Fixes the following sparse warnings:
drivers/watchdog/wdat_wdt.c:210:66: warning: Using plain integer as NULL pointer
drivers/watchdog/wdat_wdt.c:235:66: warning: Using plain integer as NULL pointer
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | drivers/watchdog/wdat_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/wdat_wdt.c b/drivers/watchdog/wdat_wdt.c index 4594723c27ba..e473e3b23720 100644 --- a/drivers/watchdog/wdat_wdt.c +++ b/drivers/watchdog/wdat_wdt.c | |||
@@ -207,7 +207,7 @@ static int wdat_wdt_enable_reboot(struct wdat_wdt *wdat) | |||
207 | * recommeded to make it configurable through hardware register. We | 207 | * recommeded to make it configurable through hardware register. We |
208 | * enable reboot now if it is configrable, just in case. | 208 | * enable reboot now if it is configrable, just in case. |
209 | */ | 209 | */ |
210 | ret = wdat_wdt_run_action(wdat, ACPI_WDAT_SET_REBOOT, 0, 0); | 210 | ret = wdat_wdt_run_action(wdat, ACPI_WDAT_SET_REBOOT, 0, NULL); |
211 | if (ret && ret != -EOPNOTSUPP) { | 211 | if (ret && ret != -EOPNOTSUPP) { |
212 | dev_err(&wdat->pdev->dev, | 212 | dev_err(&wdat->pdev->dev, |
213 | "Failed to enable reboot when watchdog triggers\n"); | 213 | "Failed to enable reboot when watchdog triggers\n"); |
@@ -232,7 +232,7 @@ static void wdat_wdt_boot_status(struct wdat_wdt *wdat) | |||
232 | wdat->wdd.bootstatus = WDIOF_CARDRESET; | 232 | wdat->wdd.bootstatus = WDIOF_CARDRESET; |
233 | 233 | ||
234 | /* Clear the boot status in case BIOS did not do it */ | 234 | /* Clear the boot status in case BIOS did not do it */ |
235 | ret = wdat_wdt_run_action(wdat, ACPI_WDAT_SET_STATUS, 0, 0); | 235 | ret = wdat_wdt_run_action(wdat, ACPI_WDAT_SET_STATUS, 0, NULL); |
236 | if (ret && ret != -EOPNOTSUPP) | 236 | if (ret && ret != -EOPNOTSUPP) |
237 | dev_err(&wdat->pdev->dev, "Failed to clear boot status\n"); | 237 | dev_err(&wdat->pdev->dev, "Failed to clear boot status\n"); |
238 | } | 238 | } |