diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2023-02-27 22:12:17 +0100 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2023-03-06 14:10:44 +0100 |
commit | b254202f13ae7dc5520d8254a39cf9823c9894b6 (patch) | |
tree | 6d432c9c2472de1a2063194dffaf9fac9df31099 /arch/arm/boards/raspberry-pi/rpi-common.c | |
parent | 9c08aef3043f8ba766ca605749322d2f01c81147 (diff) | |
download | barebox-b254202f13ae7dc5520d8254a39cf9823c9894b6.tar.gz |
ARM: bcm283x: Move mach header files to include/mach/bcm283x
Currently arch specific headers can be included with
longer possible as there won't be a single mach anymore.
Move all bcm283x specific header files to include/mach/bcm283x/ to
prepare for multi-arch support.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/raspberry-pi/rpi-common.c')
-rw-r--r-- | arch/arm/boards/raspberry-pi/rpi-common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/boards/raspberry-pi/rpi-common.c b/arch/arm/boards/raspberry-pi/rpi-common.c index 13df6a140c..367033c02a 100644 --- a/arch/arm/boards/raspberry-pi/rpi-common.c +++ b/arch/arm/boards/raspberry-pi/rpi-common.c @@ -25,9 +25,9 @@ #include <asm/system_info.h> #include <reset_source.h> -#include <mach/core.h> -#include <mach/mbox.h> -#include <mach/platform.h> +#include <mach/bcm283x/core.h> +#include <mach/bcm283x/mbox.h> +#include <mach/bcm283x/platform.h> #include <soc/bcm283x/wdt.h> |