From: Guenter Roeck Date: Thu, 24 Dec 2015 22:22:04 +0000 (-0800) Subject: watchdog: qcom-wdt: Do not set 'dev' in struct watchdog_device X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0933b453f1c7104d873aacf8524f8ac380a7ed08;p=linux-beck.git watchdog: qcom-wdt: Do not set 'dev' in struct watchdog_device The 'dev' pointer in struct watchdog_device is set by the watchdog core when registering the watchdog device and not by the driver. It points to the watchdog device, not its parent. Signed-off-by: Guenter Roeck Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/qcom-wdt.c b/drivers/watchdog/qcom-wdt.c index aa7105d32c02..424f9a952fee 100644 --- a/drivers/watchdog/qcom-wdt.c +++ b/drivers/watchdog/qcom-wdt.c @@ -164,7 +164,6 @@ static int qcom_wdt_probe(struct platform_device *pdev) goto err_clk_unprepare; } - wdt->wdd.dev = &pdev->dev; wdt->wdd.info = &qcom_wdt_info; wdt->wdd.ops = &qcom_wdt_ops; wdt->wdd.min_timeout = 1;