Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

watchdog: mt7621_wdt: Remove assignment of dev pointer

Commit 0254e953537c ("watchdog: Drop pointer to watchdog device from
struct watchdog_device") removed the dev pointer from struct
watchdog_device, but this driver was still assigning it, leading to
a compilation error:

drivers/watchdog/mt7621_wdt.c: In function 'mt7621_wdt_probe':
drivers/watchdog/mt7621_wdt.c:142:16: error:
'struct watchdog_device' has no member named 'dev'

Fix this by removing the assignment.

Fixes: 0254e953537c ("watchdog: Drop pointer to watchdog device ...")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Cc: stable@vger.kernel.org # v4.5+
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>

authored by

Guenter Roeck and committed by
Wim Van Sebroeck
8355b3f9 df9c692b

-1
-1
drivers/watchdog/mt7621_wdt.c
··· 139 139 if (!IS_ERR(mt7621_wdt_reset)) 140 140 reset_control_deassert(mt7621_wdt_reset); 141 141 142 - mt7621_wdt_dev.dev = &pdev->dev; 143 142 mt7621_wdt_dev.bootstatus = mt7621_wdt_bootcause(); 144 143 145 144 watchdog_init_timeout(&mt7621_wdt_dev, mt7621_wdt_dev.max_timeout,