diff options
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" |