diff options
Diffstat (limited to 'src/superio/ite')
-rw-r--r-- | src/superio/ite/common/early_serial.c | 1 | ||||
-rw-r--r-- | src/superio/ite/common/ite.h | 2 | ||||
-rw-r--r-- | src/superio/ite/it8671f/early_serial.c | 1 | ||||
-rw-r--r-- | src/superio/ite/it8671f/it8671f.h | 2 | ||||
-rw-r--r-- | src/superio/ite/it8718f/early_serial.c | 2 | ||||
-rw-r--r-- | src/superio/ite/it8718f/it8718f.h | 2 | ||||
-rw-r--r-- | src/superio/ite/it8772f/early_init.c | 1 | ||||
-rw-r--r-- | src/superio/ite/it8772f/it8772f.h | 2 |
8 files changed, 8 insertions, 5 deletions
diff --git a/src/superio/ite/common/early_serial.c b/src/superio/ite/common/early_serial.c index 24d5937ce7..6402ae9c59 100644 --- a/src/superio/ite/common/early_serial.c +++ b/src/superio/ite/common/early_serial.c @@ -16,6 +16,7 @@ */ #include <arch/io.h> +#include <device/pnp_ops.h> #include <device/pnp.h> #include <stdint.h> #include "ite.h" diff --git a/src/superio/ite/common/ite.h b/src/superio/ite/common/ite.h index 5b39672a5f..151ba12533 100644 --- a/src/superio/ite/common/ite.h +++ b/src/superio/ite/common/ite.h @@ -17,7 +17,7 @@ #ifndef SUPERIO_ITE_COMMON_PRE_RAM_H #define SUPERIO_ITE_COMMON_PRE_RAM_H -#include <arch/io.h> +#include <device/pnp_type.h> #include <stdint.h> #define ITE_UART_CLK_PREDIVIDE_48 0x00 /* default */ diff --git a/src/superio/ite/it8671f/early_serial.c b/src/superio/ite/it8671f/early_serial.c index 12c0ea5346..b5b94df2fa 100644 --- a/src/superio/ite/it8671f/early_serial.c +++ b/src/superio/ite/it8671f/early_serial.c @@ -15,6 +15,7 @@ */ #include <arch/io.h> +#include <device/pnp_type.h> #include <device/pnp.h> #include <stdint.h> #include "it8671f.h" diff --git a/src/superio/ite/it8671f/it8671f.h b/src/superio/ite/it8671f/it8671f.h index 4b1ab420d0..5fe74bccba 100644 --- a/src/superio/ite/it8671f/it8671f.h +++ b/src/superio/ite/it8671f/it8671f.h @@ -17,7 +17,7 @@ #ifndef SUPERIO_ITE_IT8671F_H #define SUPERIO_ITE_IT8671F_H -#include <arch/io.h> +#include <device/pnp_type.h> #include <stdint.h> /* Datasheet: Not available online, got it from ITE per request. */ diff --git a/src/superio/ite/it8718f/early_serial.c b/src/superio/ite/it8718f/early_serial.c index 915e10b7d3..74233c4fc1 100644 --- a/src/superio/ite/it8718f/early_serial.c +++ b/src/superio/ite/it8718f/early_serial.c @@ -14,7 +14,7 @@ * GNU General Public License for more details. */ -#include <arch/io.h> +#include <device/pnp_type.h> #include <superio/ite/common/ite.h> #include "it8718f.h" diff --git a/src/superio/ite/it8718f/it8718f.h b/src/superio/ite/it8718f/it8718f.h index 898599775c..ebf8c4cae2 100644 --- a/src/superio/ite/it8718f/it8718f.h +++ b/src/superio/ite/it8718f/it8718f.h @@ -17,7 +17,7 @@ #ifndef SUPERIO_ITE_IT8718F_H #define SUPERIO_ITE_IT8718F_H -#include <arch/io.h> +#include <device/pnp_type.h> /* Datasheet: http://www.ite.com.tw/product_info/PC/Brief-IT8718_2.asp */ diff --git a/src/superio/ite/it8772f/early_init.c b/src/superio/ite/it8772f/early_init.c index b299d6da2f..95be01c111 100644 --- a/src/superio/ite/it8772f/early_init.c +++ b/src/superio/ite/it8772f/early_init.c @@ -15,6 +15,7 @@ */ #include <arch/io.h> +#include <device/pnp_ops.h> #include "it8772f.h" diff --git a/src/superio/ite/it8772f/it8772f.h b/src/superio/ite/it8772f/it8772f.h index 91d107a9a2..14d76acc77 100644 --- a/src/superio/ite/it8772f/it8772f.h +++ b/src/superio/ite/it8772f/it8772f.h @@ -126,7 +126,7 @@ enum thermal_mode { /* GPIO Mode: 0: input mode, 1: output mode */ #define GPIO_REG_OUTPUT(x) (0xc8 + (x)) -#include <arch/io.h> +#include <device/pnp_type.h> #include <stdint.h> u8 it8772f_sio_read(pnp_devfn_t dev, u8 reg); |