diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2006-12-01 09:41:11 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2006-12-01 09:41:11 +0000 |
commit | 39b13f4fa0b17b496ded754b875213b72d951129 (patch) | |
tree | 367c5ecbb2f9e5ef709bd8be52db3dad9ecf2efd /src/superio/ite/it8705f | |
parent | 3d91ecb8764072e31520cea3fc464c1ae3782489 (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/it8705f')
-rw-r--r-- | src/superio/ite/it8705f/chip.h | 1 | ||||
-rw-r--r-- | src/superio/ite/it8705f/it8705f_early_serial.c | 1 | ||||
-rw-r--r-- | src/superio/ite/it8705f/superio.c | 2 |
3 files changed, 4 insertions, 0 deletions
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" |