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