* [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible
@ 2023-09-14 19:40 Fabio Estevam
2023-09-14 19:40 ` [PATCH 2/2] ARM: dts: imx6ull-phytec-tauri: Fix compatible Fabio Estevam
2023-09-25 2:54 ` [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible Shawn Guo
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2023-09-14 19:40 UTC (permalink / raw)
To: shawnguo
Cc: linux-arm-kernel, robh+dt, krzysztof.kozlowski+dt, conor+dt,
devicetree, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
The imx6ull-phytec-tauri.dtsi file is included in two places:
imx6ull-phytec-tauri-emmc.dts
imx6ull-phytec-tauri-nand.dts
These two files overwrite the board model and compatible locally, so
there is no need for describing them in imx6ull-phytec-tauri.dtsi.
Remove the board model and compatible.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri.dtsi | 5 -----
1 file changed, 5 deletions(-)
diff --git a/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri.dtsi b/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri.dtsi
index ea627638e40c..44cc4ff1d0df 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri.dtsi
+++ b/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri.dtsi
@@ -9,11 +9,6 @@
#include "imx6ull-phytec-phycore-som.dtsi"
/ {
-
- model = "PHYTEC phyGate-Tauri i.MX6 UltraLite";
- compatible = "phytec,imx6ull-phygate-tauri",
- "phytec,imx6ull-pcl063", "fsl,imx6ull";
-
aliases {
rtc0 = &i2c_rtc;
rtc1 = &snvs_rtc;
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] ARM: dts: imx6ull-phytec-tauri: Fix compatible
2023-09-14 19:40 [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible Fabio Estevam
@ 2023-09-14 19:40 ` Fabio Estevam
2023-09-25 2:54 ` [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2023-09-14 19:40 UTC (permalink / raw)
To: shawnguo
Cc: linux-arm-kernel, robh+dt, krzysztof.kozlowski+dt, conor+dt,
devicetree, Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
Per fsl.yaml, the order of the compatible strings are not correct for
imx6ull-phytec-tauri-emmc and imx6ull-phytec-tauri-nand.
Fix them accordingly.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-emmc.dts | 4 ++--
arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-nand.dts | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-emmc.dts b/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-emmc.dts
index 14adb87da911..1610f3892d9e 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-emmc.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-emmc.dts
@@ -9,8 +9,8 @@
/ {
model = "PHYTEC phyGate-Tauri i.MX6 UltraLite";
- compatible = "phytec,imx6ull-phygate-tauri",
- "phytec,imx6ull-phygate-tauri-emmc",
+ compatible = "phytec,imx6ull-phygate-tauri-emmc",
+ "phytec,imx6ull-phygate-tauri",
"phytec,imx6ull-pcl063", "fsl,imx6ull";
};
diff --git a/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-nand.dts b/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-nand.dts
index ae396ac63443..92e7d38d5637 100644
--- a/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-nand.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx6ull-phytec-tauri-nand.dts
@@ -9,8 +9,8 @@
/ {
model = "PHYTEC phyGate-Tauri i.MX6 UltraLite";
- compatible = "phytec,imx6ull-phygate-tauri",
- "phytec,imx6ull-phygate-tauri-nand",
+ compatible = "phytec,imx6ull-phygate-tauri-nand",
+ "phytec,imx6ull-phygate-tauri",
"phytec,imx6ull-pcl063", "fsl,imx6ull";
};
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible
2023-09-14 19:40 [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible Fabio Estevam
2023-09-14 19:40 ` [PATCH 2/2] ARM: dts: imx6ull-phytec-tauri: Fix compatible Fabio Estevam
@ 2023-09-25 2:54 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2023-09-25 2:54 UTC (permalink / raw)
To: Fabio Estevam
Cc: linux-arm-kernel, robh+dt, krzysztof.kozlowski+dt, conor+dt,
devicetree, Fabio Estevam
On Thu, Sep 14, 2023 at 04:40:26PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> The imx6ull-phytec-tauri.dtsi file is included in two places:
>
> imx6ull-phytec-tauri-emmc.dts
> imx6ull-phytec-tauri-nand.dts
>
> These two files overwrite the board model and compatible locally, so
> there is no need for describing them in imx6ull-phytec-tauri.dtsi.
>
> Remove the board model and compatible.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Applied both, thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-25 2:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-14 19:40 [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible Fabio Estevam
2023-09-14 19:40 ` [PATCH 2/2] ARM: dts: imx6ull-phytec-tauri: Fix compatible Fabio Estevam
2023-09-25 2:54 ` [PATCH 1/2] ARM: dts: imx6ull-phytec-tauri: Remove board model and compatible Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).