diff options
author | Devendra Naga <devendra.aaru@gmail.com> | 2012-11-02 14:15:39 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2013-03-01 12:18:33 +0100 |
commit | 6737176569d1d6356c644694d60ea2b265cb3870 (patch) | |
tree | 9e659981fa1a2a848333beb13e1a381f8e6534d3 /drivers/watchdog | |
parent | 6c41e4748662b47d46331e0e79f3b62b6786d3b9 (diff) | |
download | linux-6737176569d1d6356c644694d60ea2b265cb3870.tar.bz2 |
watchdog: gef_wdt.c: add missing remove callback
this module missed a remove callback in the platform ops.
Signed-off-by: Devendra Naga <devendra.aaru@gmail.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/gef_wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/gef_wdt.c b/drivers/watchdog/gef_wdt.c index b9c5b58e59d3..257cfbad21da 100644 --- a/drivers/watchdog/gef_wdt.c +++ b/drivers/watchdog/gef_wdt.c @@ -310,6 +310,7 @@ static struct platform_driver gef_wdt_driver = { .of_match_table = gef_wdt_ids, }, .probe = gef_wdt_probe, + .remove = gef_wdt_remove, }; static int __init gef_wdt_init(void) |