diff options
author | Guenter Roeck <linux@roeck-us.net> | 2017-01-06 06:35:16 -0800 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2017-02-24 14:00:23 -0800 |
commit | 3b72c41f13e64e4799cb0978d46eb06575456f26 (patch) | |
tree | 2246113b098d4b2270bd602b8932ef78aaae9f07 /drivers/watchdog | |
parent | 9616bd2a66000a30ff912ac3b1e02391dc2d0c89 (diff) | |
download | op-kernel-dev-3b72c41f13e64e4799cb0978d46eb06575456f26.zip op-kernel-dev-3b72c41f13e64e4799cb0978d46eb06575456f26.tar.gz |
watchdog: bcm47xx_wdt: Don't validate platform data on remove
Platform data was already validated in the probe function. If it was NULL,
the remove function will never be called. Remove the unnecessary check.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/bcm47xx_wdt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/watchdog/bcm47xx_wdt.c b/drivers/watchdog/bcm47xx_wdt.c index a1900b9..35725e2 100644 --- a/drivers/watchdog/bcm47xx_wdt.c +++ b/drivers/watchdog/bcm47xx_wdt.c @@ -226,9 +226,6 @@ static int bcm47xx_wdt_remove(struct platform_device *pdev) { struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev); - if (!wdt) - return -ENXIO; - watchdog_unregister_device(&wdt->wdd); return 0; |