diff options
author | Fabio Estevam <festevam@gmail.com> | 2019-10-29 20:40:35 +0300 |
---|---|---|
committer | Wim Van Sebroeck <wim@linux-watchdog.org> | 2019-11-18 21:53:42 +0300 |
commit | 9ab26e34bb62a304f1b7d83577d8e17f169b1cf7 (patch) | |
tree | 41e0d9641b344d0a7155be9522640d1d45ad269d /drivers/watchdog | |
parent | 747d88a1a88c1bfd0063ae01aa50bfa9e8ecb355 (diff) | |
download | linux-9ab26e34bb62a304f1b7d83577d8e17f169b1cf7.tar.xz |
watchdog: imx7ulp: Remove unused structure member
The 'notifier_block' structure member is unused, so just remove it.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20191029174037.25381-3-festevam@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/imx7ulp_wdt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/watchdog/imx7ulp_wdt.c b/drivers/watchdog/imx7ulp_wdt.c index a80d8637ab3a..da75ca57569c 100644 --- a/drivers/watchdog/imx7ulp_wdt.c +++ b/drivers/watchdog/imx7ulp_wdt.c @@ -41,7 +41,6 @@ MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); struct imx7ulp_wdt_device { - struct notifier_block restart_handler; struct watchdog_device wdd; void __iomem *base; struct clk *clk; |