diff options
author | Pali Rohár | 2022-08-03 13:00:52 +0200 |
---|---|---|
committer | Stefan Roese | 2022-08-09 08:58:27 +0200 |
commit | e49a55af8b6ad632520b4d625330ad8797ae98ca (patch) | |
tree | 85252b445f3102252fe28f65ca4c12a9d71c586b | |
parent | 5d4d1212f7a9bd179bad1774156ce5500316b2c6 (diff) |
arm: mvebu: armada-xp-theadorable.dts: Move u-boot, dm-pre-reloc to -u-boot.dtsi
Move U-Boot specific device tree property u-boot,dm-pre-reloc into U-Boot
specific device tree include file armada-xp-theadorable-u-boot.dtsi.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Tested-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | arch/arm/dts/armada-xp-theadorable-u-boot.dtsi | 5 | ||||
-rw-r--r-- | arch/arm/dts/armada-xp-theadorable.dts | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/arch/arm/dts/armada-xp-theadorable-u-boot.dtsi b/arch/arm/dts/armada-xp-theadorable-u-boot.dtsi new file mode 100644 index 00000000000..c98bfa1e18d --- /dev/null +++ b/arch/arm/dts/armada-xp-theadorable-u-boot.dtsi @@ -0,0 +1,5 @@ +&lcd0 { + u-boot,dm-pre-reloc; +}; + +#include "mvebu-u-boot.dtsi" diff --git a/arch/arm/dts/armada-xp-theadorable.dts b/arch/arm/dts/armada-xp-theadorable.dts index 2f6aa194cf0..ba73386d4f0 100644 --- a/arch/arm/dts/armada-xp-theadorable.dts +++ b/arch/arm/dts/armada-xp-theadorable.dts @@ -134,7 +134,6 @@ compatible = "marvell,armada-xp-lcd"; reg = <0xe0000 0x10000>; status = "okay"; - u-boot,dm-pre-reloc; display-timings { native-mode = <&timing0>; |