* [PATCH RESEND] ARM: dts: vf610-bk4: Use the more specific "lwn,bk4-spi"
@ 2025-02-03 12:05 Fabio Estevam
2025-02-20 13:16 ` Fabio Estevam
2025-02-23 6:44 ` Shawn Guo
0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2025-02-03 12:05 UTC (permalink / raw)
To: shawnguo
Cc: krzk+dt, conor+dt, robh, linux-arm-kernel, devicetree, lukma,
Fabio Estevam
From: Fabio Estevam <festevam@denx.de>
Currently, the compatible string used for the spidev device is "lwn,bk4",
which is the same as the board compatible string documented at fsl.yaml.
This causes several dt-schema warnings:
make dtbs_check DT_SCHEMA_FILES=fsl.yaml
...
['lwn,bk4'] is too short
'lwn,bk4' is not one of ['tq,imx8dxp-tqma8xdp-mba8xx']
'lwn,bk4' is not one of ['tq,imx8qxp-tqma8xqp-mba8xx']
'lwn,bk4' is not one of ['armadeus,imx1-apf9328', 'fsl,imx1ads']
Use a more specific "lwn,bk4-spi" compatible string to fix the problem.
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
...
Changes since v1:
- Only resend this patch. The lwn,bk4-spi compatible has already
been accepted.
arch/arm/boot/dts/nxp/vf/vf610-bk4.dts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boot/dts/nxp/vf/vf610-bk4.dts b/arch/arm/boot/dts/nxp/vf/vf610-bk4.dts
index 722182f5fd17..2492fb99956c 100644
--- a/arch/arm/boot/dts/nxp/vf/vf610-bk4.dts
+++ b/arch/arm/boot/dts/nxp/vf/vf610-bk4.dts
@@ -119,7 +119,7 @@ &dspi0 {
status = "okay";
spidev0@0 {
- compatible = "lwn,bk4";
+ compatible = "lwn,bk4-spi";
spi-max-frequency = <30000000>;
reg = <0>;
fsl,spi-cs-sck-delay = <200>;
@@ -136,7 +136,7 @@ &dspi3 {
#address-cells = <0>;
slave {
- compatible = "lwn,bk4";
+ compatible = "lwn,bk4-spi";
spi-max-frequency = <30000000>;
};
};
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH RESEND] ARM: dts: vf610-bk4: Use the more specific "lwn,bk4-spi"
2025-02-03 12:05 [PATCH RESEND] ARM: dts: vf610-bk4: Use the more specific "lwn,bk4-spi" Fabio Estevam
@ 2025-02-20 13:16 ` Fabio Estevam
2025-02-23 6:44 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2025-02-20 13:16 UTC (permalink / raw)
To: shawnguo
Cc: krzk+dt, conor+dt, robh, linux-arm-kernel, devicetree, lukma,
Fabio Estevam
Hi Shawn,
On Mon, Feb 3, 2025 at 9:05 AM Fabio Estevam <festevam@gmail.com> wrote:
>
> From: Fabio Estevam <festevam@denx.de>
>
> Currently, the compatible string used for the spidev device is "lwn,bk4",
> which is the same as the board compatible string documented at fsl.yaml.
>
> This causes several dt-schema warnings:
>
> make dtbs_check DT_SCHEMA_FILES=fsl.yaml
> ...
>
> ['lwn,bk4'] is too short
> 'lwn,bk4' is not one of ['tq,imx8dxp-tqma8xdp-mba8xx']
> 'lwn,bk4' is not one of ['tq,imx8qxp-tqma8xqp-mba8xx']
> 'lwn,bk4' is not one of ['armadeus,imx1-apf9328', 'fsl,imx1ads']
>
> Use a more specific "lwn,bk4-spi" compatible string to fix the problem.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
> ---
> ...
> Changes since v1:
> - Only resend this patch. The lwn,bk4-spi compatible has already
> been accepted.
A gentle ping.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH RESEND] ARM: dts: vf610-bk4: Use the more specific "lwn,bk4-spi"
2025-02-03 12:05 [PATCH RESEND] ARM: dts: vf610-bk4: Use the more specific "lwn,bk4-spi" Fabio Estevam
2025-02-20 13:16 ` Fabio Estevam
@ 2025-02-23 6:44 ` Shawn Guo
1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2025-02-23 6:44 UTC (permalink / raw)
To: Fabio Estevam
Cc: shawnguo, krzk+dt, conor+dt, robh, linux-arm-kernel, devicetree,
lukma, Fabio Estevam
On Mon, Feb 03, 2025 at 09:05:11AM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
>
> Currently, the compatible string used for the spidev device is "lwn,bk4",
> which is the same as the board compatible string documented at fsl.yaml.
>
> This causes several dt-schema warnings:
>
> make dtbs_check DT_SCHEMA_FILES=fsl.yaml
> ...
>
> ['lwn,bk4'] is too short
> 'lwn,bk4' is not one of ['tq,imx8dxp-tqma8xdp-mba8xx']
> 'lwn,bk4' is not one of ['tq,imx8qxp-tqma8xqp-mba8xx']
> 'lwn,bk4' is not one of ['armadeus,imx1-apf9328', 'fsl,imx1ads']
>
> Use a more specific "lwn,bk4-spi" compatible string to fix the problem.
>
> Signed-off-by: Fabio Estevam <festevam@denx.de>
Applied, thanks!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-02-23 6:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-03 12:05 [PATCH RESEND] ARM: dts: vf610-bk4: Use the more specific "lwn,bk4-spi" Fabio Estevam
2025-02-20 13:16 ` Fabio Estevam
2025-02-23 6:44 ` Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox