From: Wim Van Sebroeck Date: Mon, 25 Jul 2011 18:53:37 +0000 (+0000) Subject: watchdog: it8712f_wdt.c: fix includes X-Git-Tag: next-20110726~18^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=6d746ffce0c223a1122529ab5f596248f7d53aa5;p=karo-tx-linux.git watchdog: it8712f_wdt.c: fix includes Fix build errors by adding missing header file: drivers/watchdog/it8712f_wdt.c:127: error: implicit declaration of function 'request_muxed_region' drivers/watchdog/it8712f_wdt.c:141: error: implicit declaration of function 'release_region' drivers/watchdog/it8712f_wdt.c:412: error: implicit declaration of function 'request_region' Signed-off-by: Randy Dunlap Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/it8712f_wdt.c b/drivers/watchdog/it8712f_wdt.c index f209871156d7..8d2d8502d3e8 100644 --- a/drivers/watchdog/it8712f_wdt.c +++ b/drivers/watchdog/it8712f_wdt.c @@ -31,6 +31,7 @@ #include #include #include +#include #define NAME "it8712f_wdt"