Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57337db1 authored by Johannes Thumshirn's avatar Johannes Thumshirn Committed by Wim Van Sebroeck
Browse files

watchdog: mena21_wdt: Fix possible NULL pointer dereference



In a21_wdt_remove() we do a watchdog_unregister_device() on struct
a21_wdt_drv->wdt but never assign it.

Also move the dev_set_drvdata() call in front of the watchdog_register_device()
call, so it doesn't look like an error.

Signed-off-by: default avatarJohannes Thumshirn <jthumshirn@suse.de>
Reviewed-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent 04b1a62e
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -208,14 +208,15 @@ static int a21_wdt_probe(struct platform_device *pdev)
	else if (reset == 7)
		a21_wdt.bootstatus |= WDIOF_EXTERN2;

	drv->wdt = a21_wdt;
	dev_set_drvdata(&pdev->dev, drv);

	ret = watchdog_register_device(&a21_wdt);
	if (ret) {
		dev_err(&pdev->dev, "Cannot register watchdog device\n");
		goto err_register_wd;
	}

	dev_set_drvdata(&pdev->dev, drv);

	dev_info(&pdev->dev, "MEN A21 watchdog timer driver enabled\n");

	return 0;