From 6d746ffce0c223a1122529ab5f596248f7d53aa5 Mon Sep 17 00:00:00 2001 From: Wim Van Sebroeck Date: Mon, 25 Jul 2011 18:53:37 +0000 Subject: [PATCH] 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 --- drivers/watchdog/it8712f_wdt.c | 1 + 1 file changed, 1 insertion(+) 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" -- 2.39.5