summaryrefslogtreecommitdiff
path: root/board/freescale/t102xrdb
diff options
context:
space:
mode:
Diffstat (limited to 'board/freescale/t102xrdb')
-rw-r--r--board/freescale/t102xrdb/cpld.c1
-rw-r--r--board/freescale/t102xrdb/cpld.h1
-rw-r--r--board/freescale/t102xrdb/ddr.c2
-rw-r--r--board/freescale/t102xrdb/eth_t102xrdb.c1
-rw-r--r--board/freescale/t102xrdb/spl.c2
-rw-r--r--board/freescale/t102xrdb/t102xrdb.c2
-rw-r--r--board/freescale/t102xrdb/t102xrdb.h1
7 files changed, 10 insertions, 0 deletions
diff --git a/board/freescale/t102xrdb/cpld.c b/board/freescale/t102xrdb/cpld.c
index 601afbc336..1b794fbffc 100644
--- a/board/freescale/t102xrdb/cpld.c
+++ b/board/freescale/t102xrdb/cpld.c
@@ -11,6 +11,7 @@
#include <command.h>
#include <stdio.h>
#include <asm/io.h>
+#include <asm/types.h>
#include <linux/string.h>
#include "cpld.h"
diff --git a/board/freescale/t102xrdb/cpld.h b/board/freescale/t102xrdb/cpld.h
index c05f536806..969c20ed1d 100644
--- a/board/freescale/t102xrdb/cpld.h
+++ b/board/freescale/t102xrdb/cpld.h
@@ -4,6 +4,7 @@
*
*/
+#include <asm/types.h>
struct cpld_data {
u8 cpld_ver; /* 0x00 - CPLD Major Revision Register */
u8 cpld_ver_sub; /* 0x01 - CPLD Minor Revision Register */
diff --git a/board/freescale/t102xrdb/ddr.c b/board/freescale/t102xrdb/ddr.c
index 8e6bb29877..4bbd9bae6c 100644
--- a/board/freescale/t102xrdb/ddr.c
+++ b/board/freescale/t102xrdb/ddr.c
@@ -4,6 +4,7 @@
*/
#include <common.h>
+#include <compiler.h>
#include <i2c.h>
#include <hwconfig.h>
#include <init.h>
@@ -19,6 +20,7 @@
#include <asm/mpc85xx_gpio.h>
#include <linux/delay.h>
#include <linux/string.h>
+#include <linux/types.h>
DECLARE_GLOBAL_DATA_PTR;
diff --git a/board/freescale/t102xrdb/eth_t102xrdb.c b/board/freescale/t102xrdb/eth_t102xrdb.c
index 95d49e26f4..a7dd0182ac 100644
--- a/board/freescale/t102xrdb/eth_t102xrdb.c
+++ b/board/freescale/t102xrdb/eth_t102xrdb.c
@@ -25,6 +25,7 @@
#include <phy.h>
#include <fsl_dtsec.h>
#include <asm/fsl_serdes.h>
+#include <asm/types.h>
#include <asm/u-boot.h>
#include "../common/fman.h"
diff --git a/board/freescale/t102xrdb/spl.c b/board/freescale/t102xrdb/spl.c
index 1d8da11166..1bb7f4f7ee 100644
--- a/board/freescale/t102xrdb/spl.c
+++ b/board/freescale/t102xrdb/spl.c
@@ -4,6 +4,7 @@
#include <common.h>
#include <clock_legacy.h>
+#include <compiler.h>
#include <console.h>
#include <env_internal.h>
#include <init.h>
@@ -18,6 +19,7 @@
#include <asm/global_data.h>
#include <asm/u-boot.h>
#include <linux/string.h>
+#include <linux/types.h>
#include "../common/sleep.h"
#include "../common/spl.h"
diff --git a/board/freescale/t102xrdb/t102xrdb.c b/board/freescale/t102xrdb/t102xrdb.c
index cdecfb0870..f570973609 100644
--- a/board/freescale/t102xrdb/t102xrdb.c
+++ b/board/freescale/t102xrdb/t102xrdb.c
@@ -6,6 +6,7 @@
#include <common.h>
#include <command.h>
+#include <compiler.h>
#include <env.h>
#include <fdt_support.h>
#include <i2c.h>
@@ -14,6 +15,7 @@
#include <netdev.h>
#include <stdio.h>
#include <asm/global_data.h>
+#include <asm/types.h>
#include <asm/u-boot.h>
#include <linux/compiler.h>
#include <asm/mmu.h>
diff --git a/board/freescale/t102xrdb/t102xrdb.h b/board/freescale/t102xrdb/t102xrdb.h
index a567ae18da..b81eebbbc1 100644
--- a/board/freescale/t102xrdb/t102xrdb.h
+++ b/board/freescale/t102xrdb/t102xrdb.h
@@ -6,6 +6,7 @@
#ifndef __T1024_RDB_H__
#define __T1024_RDB_H__
+#include <asm/types.h>
#include <asm/u-boot.h>
void fdt_fixup_board_enet(void *blob);
void pci_of_setup(void *blob, struct bd_info *bd);