Commit 3b72c41f authored by Guenter Roeck's avatar Guenter Roeck
Browse files

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: default avatarGuenter Roeck <linux@roeck-us.net>
parent 9616bd2a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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;