diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2011-07-25 18:53:00 +0000 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2011-07-26 21:28:23 +0000 |
commit | 22602868865f630adab94c4419b3aeb414014865 (patch) | |
tree | 99f60ce48d9f2ef1306d03cb4e0a0d235f0df6ae /drivers/watchdog | |
parent | e7b39145b54e62e9625fabb46cf591a3a06658aa (diff) | |
download | linux-22602868865f630adab94c4419b3aeb414014865.tar.bz2 |
watchdog: it8712f_wdt.c: improve includes
remove unneeded pci.h include.
and include ioport.h to avoid build errors for the region functions.
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/it8712f_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/it8712f_wdt.c b/drivers/watchdog/it8712f_wdt.c index 690144917a4d..8d2d8502d3e8 100644 --- a/drivers/watchdog/it8712f_wdt.c +++ b/drivers/watchdog/it8712f_wdt.c @@ -28,10 +28,10 @@ #include <linux/notifier.h> #include <linux/reboot.h> #include <linux/fs.h> -#include <linux/pci.h> #include <linux/spinlock.h> #include <linux/uaccess.h> #include <linux/io.h> +#include <linux/ioport.h> #define NAME "it8712f_wdt" |