diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:23:09 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 12:31:23 -0400 |
commit | 89f5eaa1ee9a3307e05458aa4f3b2155ab0a7144 (patch) | |
tree | 12e54f434bbda4feab21b89b4dccfbaf014726e5 /include/configs | |
parent | 1c16d2e2482dd4a3991bc992d160043b257b3530 (diff) |
common: arm: davinci: Move header file out of common
We should not have an arch-specific header file in common.h. Instead, use
the asm/hardware.h header to provide the required declarations, and drop
the common.h changes.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/calimain.h | 2 | ||||
-rw-r--r-- | include/configs/da850evm.h | 3 | ||||
-rw-r--r-- | include/configs/ea20.h | 2 | ||||
-rw-r--r-- | include/configs/ipam390.h | 2 | ||||
-rw-r--r-- | include/configs/legoev3.h | 2 | ||||
-rw-r--r-- | include/configs/omapl138_lcdk.h | 3 |
6 files changed, 14 insertions, 0 deletions
diff --git a/include/configs/calimain.h b/include/configs/calimain.h index 29d3bdacac..d43e3314a7 100644 --- a/include/configs/calimain.h +++ b/include/configs/calimain.h @@ -316,4 +316,6 @@ int calimain_get_osc_freq(void); #endif +#include <asm/arch/hardware.h> + #endif /* __CONFIG_H */ diff --git a/include/configs/da850evm.h b/include/configs/da850evm.h index f46f466196..b7199bb9e0 100644 --- a/include/configs/da850evm.h +++ b/include/configs/da850evm.h @@ -330,4 +330,7 @@ #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \ GENERATED_GBL_DATA_SIZE) #endif /* CONFIG_DIRECT_NOR_BOOT */ + +#include <asm/arch/hardware.h> + #endif /* __CONFIG_H */ diff --git a/include/configs/ea20.h b/include/configs/ea20.h index fc0f5e6017..6fc6ec90af 100644 --- a/include/configs/ea20.h +++ b/include/configs/ea20.h @@ -270,4 +270,6 @@ "ubootupd_nand=echo run load_magic,run load_nand,run upd;\0" \ "bootcmd=run net_testrfs\0" +#include <asm/arch/hardware.h> + #endif /* __CONFIG_H */ diff --git a/include/configs/ipam390.h b/include/configs/ipam390.h index 127e7e7396..f78aa47ae2 100644 --- a/include/configs/ipam390.h +++ b/include/configs/ipam390.h @@ -301,4 +301,6 @@ #define CONFIG_IPAM390_GPIO_LED_RED ((16 * 7) + 11) #define CONFIG_IPAM390_GPIO_LED_GREEN ((16 * 7) + 12) +#include <asm/arch/hardware.h> + #endif /* __CONFIG_H */ diff --git a/include/configs/legoev3.h b/include/configs/legoev3.h index f230f40d76..15da4074f2 100644 --- a/include/configs/legoev3.h +++ b/include/configs/legoev3.h @@ -214,4 +214,6 @@ #define CONFIG_SYS_INIT_SP_ADDR 0x80010000 +#include <asm/arch/hardware.h> + #endif /* __CONFIG_H */ diff --git a/include/configs/omapl138_lcdk.h b/include/configs/omapl138_lcdk.h index 8904cd5cc7..0a8096cc76 100644 --- a/include/configs/omapl138_lcdk.h +++ b/include/configs/omapl138_lcdk.h @@ -341,4 +341,7 @@ #define CONFIG_SYS_SDRAM_BASE 0xc0000000 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \ GENERATED_GBL_DATA_SIZE) + +#include <asm/arch/hardware.h> + #endif /* __CONFIG_H */ |