Browse Source

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>
Devendra Naga 12 years ago
parent
commit
6737176569
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/watchdog/gef_wdt.c

+ 1 - 0
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)