summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/karo-tx6x
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2016-03-02 16:11:28 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2016-03-02 16:11:31 +0100
commitc46988f38054d3d15669923970aa515ee0d1b6a9 (patch)
tree4326ee18de2fd1e334b75bda147f0c29bbf741a3 /arch/arm/boards/karo-tx6x
parentbb0d5080d5c67ed44fbe40a63ddd7f7dd11d0b1d (diff)
downloadbarebox-c46988f38054d3d15669923970aa515ee0d1b6a9.tar.gz
barebox-c46988f38054d3d15669923970aa515ee0d1b6a9.tar.xz
ARM: i.MX: karo-tx6: Generalize 801x support
The device tree for the 801x variant only contains displays. The displays are not part of the SoM, but instead of the baseboard, so they should be described in a baseboard dts. With this patch we rather include the common tx6x dtsi file and drop 801x from the barebox device tree names. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/karo-tx6x')
-rw-r--r--arch/arm/boards/karo-tx6x/lowlevel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boards/karo-tx6x/lowlevel.c b/arch/arm/boards/karo-tx6x/lowlevel.c
index e67315f97c..1aa24c5842 100644
--- a/arch/arm/boards/karo-tx6x/lowlevel.c
+++ b/arch/arm/boards/karo-tx6x/lowlevel.c
@@ -36,7 +36,7 @@ static inline void setup_uart(void)
putc_ll('>');
}
-extern char __dtb_imx6dl_tx6u_801x_start[];
+extern char __dtb_imx6dl_tx6u_start[];
BAREBOX_IMD_TAG_STRING(tx6x_mx6_memsize_1G, IMD_TYPE_PARAMETER, "memsize=1024", 0);
@@ -53,7 +53,7 @@ ENTRY_FUNCTION(start_imx6dl_tx6x_1g, r0, r1, r2)
if (IS_ENABLED(CONFIG_DEBUG_LL))
setup_uart();
- fdt = __dtb_imx6dl_tx6u_801x_start - get_runtime_offset();
+ fdt = __dtb_imx6dl_tx6u_start - get_runtime_offset();
barebox_arm_entry(0x10000000, SZ_1G, fdt);
}