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 | |
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')
-rw-r--r-- | arch/arm/boards/raspberry-pi/lowlevel.c | 4 | ||||
-rw-r--r-- | arch/arm/boards/raspberry-pi/mbox-helpers.c | 2 | ||||
-rw-r--r-- | arch/arm/boards/raspberry-pi/rpi-common.c | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/boards/raspberry-pi/lowlevel.c b/arch/arm/boards/raspberry-pi/lowlevel.c index 5ead895767..449dfa4575 100644 --- a/arch/arm/boards/raspberry-pi/lowlevel.c +++ b/arch/arm/boards/raspberry-pi/lowlevel.c @@ -5,9 +5,9 @@ #include <common.h> #include <linux/sizes.h> #include <asm/unaligned.h> -#include <mach/platform.h> +#include <mach/bcm283x/platform.h> #include <debug_ll.h> -#include <mach/mbox.h> +#include <mach/bcm283x/mbox.h> #include <of.h> #include "lowlevel.h" diff --git a/arch/arm/boards/raspberry-pi/mbox-helpers.c b/arch/arm/boards/raspberry-pi/mbox-helpers.c index 9f252c68ff..3a76ac2b01 100644 --- a/arch/arm/boards/raspberry-pi/mbox-helpers.c +++ b/arch/arm/boards/raspberry-pi/mbox-helpers.c @@ -1,7 +1,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later // SPDX-FileCopyrightText: 2009 Carlo Caione <carlo@carlocaione.org> -#include <mach/mbox.h> +#include <mach/bcm283x/mbox.h> #include "lowlevel.h" struct msg_get_arm_mem { 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> |