watchdog: rtd119x_wdt: Fix remove function
authorGuenter Roeck <linux@roeck-us.net>
Sun, 7 Apr 2019 15:29:35 +0000 (08:29 -0700)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Sun, 5 May 2019 19:02:13 +0000 (21:02 +0200)
commit8dd29f19512cc75ee470d7bb8ec86af199de23a8
treeb616713ac620edd2e13e51d0048501208cfaf88a
parente2a4aeda87d39b616c4064ae8c67972f283067ee
watchdog: rtd119x_wdt: Fix remove function

The driver registers the watchdog with devm_watchdog_register_device() but
still calls watchdog_unregister_device() on remove. Since clocks have to
be stopped when removing the driver, after the watchdog device has been
unregistered, we can not drop the call to watchdog_unregister_device().
Use watchdog_register_device() to register the watchdog.

Fixes: 2bdf6acbfead7 ("watchdog: Add Realtek RTD1295")
Cc: Andreas Färber <afaerber@suse.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/rtd119x_wdt.c