aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/oxford/oxpcie/oxpcie.c1
-rw-r--r--src/drivers/oxford/oxpcie/oxpcie_early.c2
-rw-r--r--src/drivers/uart/pl011.c2
-rw-r--r--src/drivers/uart/util.c2
4 files changed, 4 insertions, 3 deletions
diff --git a/src/drivers/oxford/oxpcie/oxpcie.c b/src/drivers/oxford/oxpcie/oxpcie.c
index f719fc7f2d..26d29f858b 100644
--- a/src/drivers/oxford/oxpcie/oxpcie.c
+++ b/src/drivers/oxford/oxpcie/oxpcie.c
@@ -22,6 +22,7 @@
#include <device/pci.h>
#include <device/pci_ids.h>
#include <console/console.h>
+#include <uart8250.h>
#include <arch/io.h>
static void oxford_oxpcie_enable(device_t dev)
diff --git a/src/drivers/oxford/oxpcie/oxpcie_early.c b/src/drivers/oxford/oxpcie/oxpcie_early.c
index 4f6f9649f5..edb0523e52 100644
--- a/src/drivers/oxford/oxpcie/oxpcie_early.c
+++ b/src/drivers/oxford/oxpcie/oxpcie_early.c
@@ -21,7 +21,7 @@
#include <arch/io.h>
#include <arch/early_variables.h>
#include <delay.h>
-#include <uart.h>
+#include <console/uart.h>
#include <uart8250.h>
#include <device/pci_def.h>
diff --git a/src/drivers/uart/pl011.c b/src/drivers/uart/pl011.c
index af085acbea..376e95c0c8 100644
--- a/src/drivers/uart/pl011.c
+++ b/src/drivers/uart/pl011.c
@@ -14,7 +14,7 @@
*/
#include <console/console.h>
-#include <uart.h>
+#include <console/uart.h>
static void pl011_uart_tx_byte(unsigned char data)
{
diff --git a/src/drivers/uart/util.c b/src/drivers/uart/util.c
index e09b686a9c..72bf50e72b 100644
--- a/src/drivers/uart/util.c
+++ b/src/drivers/uart/util.c
@@ -16,7 +16,7 @@
*/
#include <console/console.h>
-#include <uart.h>
+#include <console/uart.h>
#if CONFIG_USE_OPTION_TABLE
#include <option.h>
#include "option_table.h"