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>
This commit is contained in:
parent
9616bd2a66
commit
3b72c41f13
|
@ -226,9 +226,6 @@ static int bcm47xx_wdt_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
|
struct bcm47xx_wdt *wdt = dev_get_platdata(&pdev->dev);
|
||||||
|
|
||||||
if (!wdt)
|
|
||||||
return -ENXIO;
|
|
||||||
|
|
||||||
watchdog_unregister_device(&wdt->wdd);
|
watchdog_unregister_device(&wdt->wdd);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue