Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Randy Dunlap and committed by
Wim Van Sebroeck
491d9e2a 744f6f4d

+1
+1
drivers/watchdog/ie6xx_wdt.c
··· 24 24 #include <linux/module.h> 25 25 #include <linux/moduleparam.h> 26 26 #include <linux/platform_device.h> 27 + #include <linux/io.h> 27 28 #include <linux/kernel.h> 28 29 #include <linux/types.h> 29 30 #include <linux/watchdog.h>