aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/ie6xx_wdt.c
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@xenotime.net>2012-05-14 13:14:29 -0700
committerWim Van Sebroeck <wim@iguana.be>2012-05-23 16:25:33 +0200
commit491d9e2a5f0e845a91ef53065afb4805a668d80d (patch)
treeddbbbc1e651cb2d9bc2cac01dcfa1443cc525ee4 /drivers/watchdog/ie6xx_wdt.c
parentwatchdog: ie6xx_wdt.c: fix printk format warning (diff)
downloadlinux-dev-491d9e2a5f0e845a91ef53065afb4805a668d80d.tar.xz
linux-dev-491d9e2a5f0e845a91ef53065afb4805a668d80d.zip
watchdog: ie6xx_wdt needs io.h
Fix build error by including <linux/io.h>: drivers/watchdog/ie6xx_wdt.c:97:2: error: implicit declaration of function 'outb' drivers/watchdog/ie6xx_wdt.c:133:2: error: implicit declaration of function 'outl' drivers/watchdog/ie6xx_wdt.c:161:2: error: implicit declaration of function 'inb' drivers/watchdog/ie6xx_wdt.c:199:3: error: implicit declaration of function 'inl' drivers/watchdog/ie6xx_wdt.c:203:3: error: implicit declaration of function 'inw' Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to '')
-rw-r--r--drivers/watchdog/ie6xx_wdt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/ie6xx_wdt.c b/drivers/watchdog/ie6xx_wdt.c
index 790993efce28..5f0d776f902c 100644
--- a/drivers/watchdog/ie6xx_wdt.c
+++ b/drivers/watchdog/ie6xx_wdt.c
@@ -24,6 +24,7 @@
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/platform_device.h>
+#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/watchdog.h>