aboutsummaryrefslogtreecommitdiff
path: root/src/superio/ite
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2006-12-01 09:41:11 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2006-12-01 09:41:11 +0000
commit39b13f4fa0b17b496ded754b875213b72d951129 (patch)
tree367c5ecbb2f9e5ef709bd8be52db3dad9ecf2efd /src/superio/ite
parent3d91ecb8764072e31520cea3fc464c1ae3782489 (diff)
Add missing #includes to some ITE Super I/O files.
Signed-off-by: Jon Dufresne <jon.dufresne@gmail.com> Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2512 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/ite')
-rw-r--r--src/superio/ite/it8661f/chip.h1
-rw-r--r--src/superio/ite/it8661f/it8661f_early_serial.c1
-rw-r--r--src/superio/ite/it8661f/superio.c3
-rw-r--r--src/superio/ite/it8671f/chip.h1
-rw-r--r--src/superio/ite/it8671f/it8671f_early_serial.c1
-rw-r--r--src/superio/ite/it8671f/superio.c2
-rw-r--r--src/superio/ite/it8673f/chip.h1
-rw-r--r--src/superio/ite/it8673f/it8673f_early_serial.c1
-rw-r--r--src/superio/ite/it8673f/superio.c2
-rw-r--r--src/superio/ite/it8705f/chip.h1
-rw-r--r--src/superio/ite/it8705f/it8705f_early_serial.c1
-rw-r--r--src/superio/ite/it8705f/superio.c2
-rw-r--r--src/superio/ite/it8712f/chip.h1
-rw-r--r--src/superio/ite/it8712f/it8712f_early_serial.c1
-rw-r--r--src/superio/ite/it8712f/superio.c2
-rw-r--r--src/superio/ite/it8716f/chip.h1
-rw-r--r--src/superio/ite/it8716f/it8716f_early_serial.c1
-rw-r--r--src/superio/ite/it8716f/superio.c2
-rw-r--r--src/superio/ite/it8718f/chip.h1
-rw-r--r--src/superio/ite/it8718f/it8718f_early_serial.c1
-rw-r--r--src/superio/ite/it8718f/superio.c2
21 files changed, 28 insertions, 1 deletions
diff --git a/src/superio/ite/it8661f/chip.h b/src/superio/ite/it8661f/chip.h
index 691f0e2ab5..cc4ae6bfd9 100644
--- a/src/superio/ite/it8661f/chip.h
+++ b/src/superio/ite/it8661f/chip.h
@@ -23,6 +23,7 @@
/* This chip doesn't seem to have keyboard and mouse support. */
+#include <device/device.h>
#include <uart8250.h>
extern struct chip_operations superio_ite_it8661f_ops;
diff --git a/src/superio/ite/it8661f/it8661f_early_serial.c b/src/superio/ite/it8661f/it8661f_early_serial.c
index 522ddf71cf..7a9b4925b7 100644
--- a/src/superio/ite/it8661f/it8661f_early_serial.c
+++ b/src/superio/ite/it8661f/it8661f_early_serial.c
@@ -19,6 +19,7 @@
*/
#include <arch/romcc_io.h>
+#include <device/device.h>
#include "it8661f.h"
/* The base address is 0x3f0, 0x3bd, or 0x370, depending on config bytes. */
diff --git a/src/superio/ite/it8661f/superio.c b/src/superio/ite/it8661f/superio.c
index e0dd46b0d7..5f04fc4ace 100644
--- a/src/superio/ite/it8661f/superio.c
+++ b/src/superio/ite/it8661f/superio.c
@@ -20,8 +20,9 @@
/* This chip doesn't seem to have keyboard and mouse support. */
+#include <device/device.h>
+#include <device/pnp.h>
#include <uart8250.h>
-/* #include <pc80/keyboard.h> */
#include "chip.h"
#include "it8661f.h"
diff --git a/src/superio/ite/it8671f/chip.h b/src/superio/ite/it8671f/chip.h
index 7f7f588fc0..1433f3f788 100644
--- a/src/superio/ite/it8671f/chip.h
+++ b/src/superio/ite/it8671f/chip.h
@@ -21,6 +21,7 @@
#ifndef _SUPERIO_ITE_IT8671F
#define _SUPERIO_ITE_IT8671F
+#include <device/device.h>
#include <pc80/keyboard.h>
#include <uart8250.h>
diff --git a/src/superio/ite/it8671f/it8671f_early_serial.c b/src/superio/ite/it8671f/it8671f_early_serial.c
index 68cfcd4cac..62a9a88dd9 100644
--- a/src/superio/ite/it8671f/it8671f_early_serial.c
+++ b/src/superio/ite/it8671f/it8671f_early_serial.c
@@ -19,6 +19,7 @@
*/
#include <arch/romcc_io.h>
+#include <device/device.h>
#include "it8671f.h"
/* The base address is 0x3f0, 0x3bd, or 0x370, depending on config bytes. */
diff --git a/src/superio/ite/it8671f/superio.c b/src/superio/ite/it8671f/superio.c
index 885812ca3b..0f82cee415 100644
--- a/src/superio/ite/it8671f/superio.c
+++ b/src/superio/ite/it8671f/superio.c
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <device/device.h>
+#include <device/pnp.h>
#include <uart8250.h>
#include <pc80/keyboard.h>
#include "chip.h"
diff --git a/src/superio/ite/it8673f/chip.h b/src/superio/ite/it8673f/chip.h
index a7011dd4ef..8a8c840fe9 100644
--- a/src/superio/ite/it8673f/chip.h
+++ b/src/superio/ite/it8673f/chip.h
@@ -21,6 +21,7 @@
#ifndef _SUPERIO_ITE_IT8673F
#define _SUPERIO_ITE_IT8673F
+#include <device/device.h>
#include <pc80/keyboard.h>
#include <uart8250.h>
diff --git a/src/superio/ite/it8673f/it8673f_early_serial.c b/src/superio/ite/it8673f/it8673f_early_serial.c
index 3c8c492149..b47d36f5e8 100644
--- a/src/superio/ite/it8673f/it8673f_early_serial.c
+++ b/src/superio/ite/it8673f/it8673f_early_serial.c
@@ -19,6 +19,7 @@
*/
#include <arch/romcc_io.h>
+#include <device/device.h>
#include "it8673f.h"
/* The base address is 0x3f0, 0x3bd, or 0x370, depending on config bytes. */
diff --git a/src/superio/ite/it8673f/superio.c b/src/superio/ite/it8673f/superio.c
index 63036e61f3..66b75ee164 100644
--- a/src/superio/ite/it8673f/superio.c
+++ b/src/superio/ite/it8673f/superio.c
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <device/device.h>
+#include <device/pnp.h>
#include <uart8250.h>
#include <pc80/keyboard.h>
#include "chip.h"
diff --git a/src/superio/ite/it8705f/chip.h b/src/superio/ite/it8705f/chip.h
index 1a682c7b10..3ebc6439cf 100644
--- a/src/superio/ite/it8705f/chip.h
+++ b/src/superio/ite/it8705f/chip.h
@@ -23,6 +23,7 @@
/* This chip doesn't seem to have keyboard and mouse support. */
+#include <device/device.h>
#include <uart8250.h>
extern struct chip_operations superio_ite_it8705f_ops;
diff --git a/src/superio/ite/it8705f/it8705f_early_serial.c b/src/superio/ite/it8705f/it8705f_early_serial.c
index 3ae512725a..7b5c97e247 100644
--- a/src/superio/ite/it8705f/it8705f_early_serial.c
+++ b/src/superio/ite/it8705f/it8705f_early_serial.c
@@ -19,6 +19,7 @@
*/
#include <arch/romcc_io.h>
+#include <device/device.h>
#include "it8705f.h"
/* The base address is 0x2e or 0x4e, depending on config bytes. */
diff --git a/src/superio/ite/it8705f/superio.c b/src/superio/ite/it8705f/superio.c
index de3640832f..2761852602 100644
--- a/src/superio/ite/it8705f/superio.c
+++ b/src/superio/ite/it8705f/superio.c
@@ -20,6 +20,8 @@
/* This chip doesn't seem to have keyboard and mouse support. */
+#include <device/device.h>
+#include <device/pnp.h>
#include <uart8250.h>
#include "chip.h"
#include "it8705f.h"
diff --git a/src/superio/ite/it8712f/chip.h b/src/superio/ite/it8712f/chip.h
index 44ed0e2a9f..f784ec4fc8 100644
--- a/src/superio/ite/it8712f/chip.h
+++ b/src/superio/ite/it8712f/chip.h
@@ -21,6 +21,7 @@
#ifndef _SUPERIO_ITE_IT8712F
#define _SUPERIO_ITE_IT8712F
+#include <device/device.h>
#include <pc80/keyboard.h>
#include <uart8250.h>
diff --git a/src/superio/ite/it8712f/it8712f_early_serial.c b/src/superio/ite/it8712f/it8712f_early_serial.c
index e0828dfbf8..3d6c2e8f6a 100644
--- a/src/superio/ite/it8712f/it8712f_early_serial.c
+++ b/src/superio/ite/it8712f/it8712f_early_serial.c
@@ -19,6 +19,7 @@
*/
#include <arch/romcc_io.h>
+#include <device/device.h>
#include "it8712f.h"
/* The base address is 0x2e or 0x4e, depending on config bytes. */
diff --git a/src/superio/ite/it8712f/superio.c b/src/superio/ite/it8712f/superio.c
index d49b94b7a1..fa1d43e6cd 100644
--- a/src/superio/ite/it8712f/superio.c
+++ b/src/superio/ite/it8712f/superio.c
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <device/device.h>
+#include <device/pnp.h>
#include <uart8250.h>
#include <pc80/keyboard.h>
#include "chip.h"
diff --git a/src/superio/ite/it8716f/chip.h b/src/superio/ite/it8716f/chip.h
index 922716c7a6..fc52337a2a 100644
--- a/src/superio/ite/it8716f/chip.h
+++ b/src/superio/ite/it8716f/chip.h
@@ -21,6 +21,7 @@
#ifndef _SUPERIO_ITE_IT8716F
#define _SUPERIO_ITE_IT8716F
+#include <device/device.h>
#include <pc80/keyboard.h>
#include <uart8250.h>
diff --git a/src/superio/ite/it8716f/it8716f_early_serial.c b/src/superio/ite/it8716f/it8716f_early_serial.c
index 4dedc8ff6c..7c451b7a49 100644
--- a/src/superio/ite/it8716f/it8716f_early_serial.c
+++ b/src/superio/ite/it8716f/it8716f_early_serial.c
@@ -19,6 +19,7 @@
*/
#include <arch/romcc_io.h>
+#include <device/device.h>
#include "it8716f.h"
/* The base address is 0x2e or 0x4e, depending on config bytes. */
diff --git a/src/superio/ite/it8716f/superio.c b/src/superio/ite/it8716f/superio.c
index edda47726c..cec01bb07d 100644
--- a/src/superio/ite/it8716f/superio.c
+++ b/src/superio/ite/it8716f/superio.c
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <device/device.h>
+#include <device/pnp.h>
#include <uart8250.h>
#include <pc80/keyboard.h>
#include "chip.h"
diff --git a/src/superio/ite/it8718f/chip.h b/src/superio/ite/it8718f/chip.h
index 95a8a05821..2f1e29f72e 100644
--- a/src/superio/ite/it8718f/chip.h
+++ b/src/superio/ite/it8718f/chip.h
@@ -21,6 +21,7 @@
#ifndef _SUPERIO_ITE_IT8718F
#define _SUPERIO_ITE_IT8718F
+#include <device/device.h>
#include <pc80/keyboard.h>
#include <uart8250.h>
diff --git a/src/superio/ite/it8718f/it8718f_early_serial.c b/src/superio/ite/it8718f/it8718f_early_serial.c
index 212f964604..ed750a042d 100644
--- a/src/superio/ite/it8718f/it8718f_early_serial.c
+++ b/src/superio/ite/it8718f/it8718f_early_serial.c
@@ -19,6 +19,7 @@
*/
#include <arch/romcc_io.h>
+#include <device/device.h>
#include "it8718f.h"
/* The base address is 0x2e or 0x4e, depending on config bytes. */
diff --git a/src/superio/ite/it8718f/superio.c b/src/superio/ite/it8718f/superio.c
index 0b91eab388..aeaadcf6b0 100644
--- a/src/superio/ite/it8718f/superio.c
+++ b/src/superio/ite/it8718f/superio.c
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#include <device/device.h>
+#include <device/pnp.h>
#include <uart8250.h>
#include <pc80/keyboard.h>
#include "chip.h"