diff options
author | Matthias Brugger <mbrugger@suse.com> | 2019-11-19 16:01:03 +0100 |
---|---|---|
committer | Matthias Brugger <mbrugger@suse.com> | 2019-11-24 10:46:27 +0100 |
commit | 8e3361c88ae322826c97ecc4b70df26d9fabc9ad (patch) | |
tree | 6a6a7a9c015783a272e85576f5dbf0032a67b7af /include/configs | |
parent | 37964494c03f0d23c58c0e43cd694df0733ec1ca (diff) |
ARM: bcm283x: Move BCM283x_BASE to a global variable
We move the per SOC define BCM283x_BASE to a global variable.
This is a first step to provide a single binary for several bcm283x
SoCs.
Signed-off-by: Matthias Brugger <mbrugger@suse.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/rpi.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/configs/rpi.h b/include/configs/rpi.h index 77d2d5458a..69b09f3f72 100644 --- a/include/configs/rpi.h +++ b/include/configs/rpi.h @@ -9,6 +9,10 @@ #include <linux/sizes.h> #include <asm/arch/timer.h> +#ifndef __ASSEMBLY__ +#include <asm/arch/base.h> +#endif + #if defined(CONFIG_TARGET_RPI_2) || defined(CONFIG_TARGET_RPI_3_32B) #define CONFIG_SKIP_LOWLEVEL_INIT #endif |