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/it8661f | |
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/it8661f')
-rw-r--r-- | src/superio/ite/it8661f/chip.h | 1 | ||||
-rw-r--r-- | src/superio/ite/it8661f/it8661f_early_serial.c | 1 | ||||
-rw-r--r-- | src/superio/ite/it8661f/superio.c | 3 |
3 files changed, 4 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" |