linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ARM: dts: imx7-mba7: Use 'no-mmc' property
@ 2024-03-25 12:14 Fabio Estevam
  2024-03-25 12:56 ` Alexander Stein
  2024-04-02 14:43 ` Shawn Guo
  0 siblings, 2 replies; 3+ messages in thread
From: Fabio Estevam @ 2024-03-25 12:14 UTC (permalink / raw)
  To: shawnguo; +Cc: alexander.stein, linux-arm-kernel, Fabio Estevam

From: Fabio Estevam <festevam@denx.de>

'no-emmc' is not a valid property.

The original intention was to use the 'no-mmc' property.

Change it accordingly to fix the following dt-schema warning:

imx7s-mba7.dtb: mmc@30b40000: Unevaluated properties are not allowed ('no-emmc' was unexpected)

Fixes: d430a7e0e181 ("ARM: dts: imx7-mba7: restrict usdhc interface modes")
Signed-off-by: Fabio Estevam <festevam@denx.de>
---
Changes since v1:
Use no-mmc (Alexander).

 arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi b/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi
index 1235a71c6abe..52869e68f833 100644
--- a/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi
+++ b/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi
@@ -666,7 +666,7 @@ &usdhc1 {
 	bus-width = <4>;
 	no-1-8-v;
 	no-sdio;
-	no-emmc;
+	no-mmc;
 	status = "okay";
 };
 
-- 
2.34.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] ARM: dts: imx7-mba7: Use 'no-mmc' property
  2024-03-25 12:14 [PATCH v2] ARM: dts: imx7-mba7: Use 'no-mmc' property Fabio Estevam
@ 2024-03-25 12:56 ` Alexander Stein
  2024-04-02 14:43 ` Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Alexander Stein @ 2024-03-25 12:56 UTC (permalink / raw)
  To: shawnguo, Fabio Estevam; +Cc: linux-arm-kernel, Fabio Estevam

Hi Fabio,

thanks for the patch.

Am Montag, 25. März 2024, 13:14:04 CET schrieb Fabio Estevam:
> From: Fabio Estevam <festevam@denx.de>
> 
> 'no-emmc' is not a valid property.
> 
> The original intention was to use the 'no-mmc' property.
> 
> Change it accordingly to fix the following dt-schema warning:
> 
> imx7s-mba7.dtb: mmc@30b40000: Unevaluated properties are not allowed ('no-emmc' was unexpected)
> 
> Fixes: d430a7e0e181 ("ARM: dts: imx7-mba7: restrict usdhc interface modes")
> Signed-off-by: Fabio Estevam <festevam@denx.de>

Reviewed-by: Alexander Stein <alexander.stein@ew.tq-group.com>
> ---
> Changes since v1:
> Use no-mmc (Alexander).
> 
>  arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi b/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi
> index 1235a71c6abe..52869e68f833 100644
> --- a/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi
> +++ b/arch/arm/boot/dts/nxp/imx/imx7-mba7.dtsi
> @@ -666,7 +666,7 @@ &usdhc1 {
>  	bus-width = <4>;
>  	no-1-8-v;
>  	no-sdio;
> -	no-emmc;
> +	no-mmc;
>  	status = "okay";
>  };
>  
> 


-- 
TQ-Systems GmbH | Mühlstraße 2, Gut Delling | 82229 Seefeld, Germany
Amtsgericht München, HRB 105018
Geschäftsführer: Detlef Schneider, Rüdiger Stahl, Stefan Schneider
http://www.tq-group.com/



_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] ARM: dts: imx7-mba7: Use 'no-mmc' property
  2024-03-25 12:14 [PATCH v2] ARM: dts: imx7-mba7: Use 'no-mmc' property Fabio Estevam
  2024-03-25 12:56 ` Alexander Stein
@ 2024-04-02 14:43 ` Shawn Guo
  1 sibling, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2024-04-02 14:43 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: shawnguo, alexander.stein, linux-arm-kernel, Fabio Estevam

On Mon, Mar 25, 2024 at 09:14:04AM -0300, Fabio Estevam wrote:
> From: Fabio Estevam <festevam@denx.de>
> 
> 'no-emmc' is not a valid property.
> 
> The original intention was to use the 'no-mmc' property.
> 
> Change it accordingly to fix the following dt-schema warning:
> 
> imx7s-mba7.dtb: mmc@30b40000: Unevaluated properties are not allowed ('no-emmc' was unexpected)
> 
> Fixes: d430a7e0e181 ("ARM: dts: imx7-mba7: restrict usdhc interface modes")
> Signed-off-by: Fabio Estevam <festevam@denx.de>

Applied, thanks!


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-02 14:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-25 12:14 [PATCH v2] ARM: dts: imx7-mba7: Use 'no-mmc' property Fabio Estevam
2024-03-25 12:56 ` Alexander Stein
2024-04-02 14:43 ` 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).