watchdog: mt7621_wdt: Remove assignment of dev pointer
authorGuenter Roeck <linux@roeck-us.net>
Mon, 12 Sep 2016 13:16:51 +0000 (06:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Oct 2016 07:45:26 +0000 (03:45 -0400)
commitf316bc2b64c8ca4811117fb8b085662732f528e7
tree2f833a44c7550053cf61c211c6e330fe33471d89
parentbfdc15a4f726ff86bf938762324ab3ffde2aebd2
watchdog: mt7621_wdt: Remove assignment of dev pointer

commit 8355b3f94425ac8b9683869354be935795f055ca upstream.

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>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/watchdog/mt7621_wdt.c