* [PATCH] ARM: dts: tbs2910: rename MMC node aliases
@ 2020-12-22 15:59 Soeren Moch
2021-01-11 0:31 ` Shawn Guo
0 siblings, 1 reply; 3+ messages in thread
From: Soeren Moch @ 2020-12-22 15:59 UTC (permalink / raw)
To: Shawn Guo
Cc: Sascha Hauer, Soeren Moch, Fabio Estevam, linux-arm-kernel,
stable
to be consistent with kernel versions up to v5.9 (mmc aliases not used here).
usdhc1 is not wired up on this board and therefore cannot be used.
Start mmc aliases with usdhc2.
Signed-off-by: Soeren Moch <smoch@web.de>
Cc: stable@vger.kernel.org # 5.10.x
---
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org
---
arch/arm/boot/dts/imx6q-tbs2910.dts | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/arch/arm/boot/dts/imx6q-tbs2910.dts b/arch/arm/boot/dts/imx6q-tbs2910.dts
index cb591233035b..6a6e27b35e34 100644
--- a/arch/arm/boot/dts/imx6q-tbs2910.dts
+++ b/arch/arm/boot/dts/imx6q-tbs2910.dts
@@ -16,6 +16,13 @@ chosen {
stdout-path = &uart1;
};
+ aliases {
+ mmc0 = &usdhc2;
+ mmc1 = &usdhc3;
+ mmc2 = &usdhc4;
+ /delete-property/ mmc3;
+ };
+
memory@10000000 {
device_type = "memory";
reg = <0x10000000 0x80000000>;
--
2.25.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] ARM: dts: tbs2910: rename MMC node aliases
2020-12-22 15:59 [PATCH] ARM: dts: tbs2910: rename MMC node aliases Soeren Moch
@ 2021-01-11 0:31 ` Shawn Guo
2021-01-11 0:34 ` Shawn Guo
0 siblings, 1 reply; 3+ messages in thread
From: Shawn Guo @ 2021-01-11 0:31 UTC (permalink / raw)
To: Soeren Moch; +Cc: Sascha Hauer, Fabio Estevam, linux-arm-kernel, stable
On Tue, Dec 22, 2020 at 04:59:08PM +0100, Soeren Moch wrote:
> to be consistent with kernel versions up to v5.9 (mmc aliases not used here).
> usdhc1 is not wired up on this board and therefore cannot be used.
> Start mmc aliases with usdhc2.
>
> Signed-off-by: Soeren Moch <smoch@web.de>
> Cc: stable@vger.kernel.org # 5.10.x
Can we have a Fixes tag as well?
Shawn
> ---
> Cc: Shawn Guo <shawnguo@kernel.org>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> Cc: Fabio Estevam <festevam@gmail.com>
> Cc: linux-arm-kernel@lists.infradead.org
> ---
> arch/arm/boot/dts/imx6q-tbs2910.dts | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/arch/arm/boot/dts/imx6q-tbs2910.dts b/arch/arm/boot/dts/imx6q-tbs2910.dts
> index cb591233035b..6a6e27b35e34 100644
> --- a/arch/arm/boot/dts/imx6q-tbs2910.dts
> +++ b/arch/arm/boot/dts/imx6q-tbs2910.dts
> @@ -16,6 +16,13 @@ chosen {
> stdout-path = &uart1;
> };
>
> + aliases {
> + mmc0 = &usdhc2;
> + mmc1 = &usdhc3;
> + mmc2 = &usdhc4;
> + /delete-property/ mmc3;
> + };
> +
> memory@10000000 {
> device_type = "memory";
> reg = <0x10000000 0x80000000>;
> --
> 2.25.1
>
_______________________________________________
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] ARM: dts: tbs2910: rename MMC node aliases
2021-01-11 0:31 ` Shawn Guo
@ 2021-01-11 0:34 ` Shawn Guo
0 siblings, 0 replies; 3+ messages in thread
From: Shawn Guo @ 2021-01-11 0:34 UTC (permalink / raw)
To: Soeren Moch; +Cc: Sascha Hauer, Fabio Estevam, stable, linux-arm-kernel
On Mon, Jan 11, 2021 at 8:32 AM Shawn Guo <shawnguo@kernel.org> wrote:
>
> On Tue, Dec 22, 2020 at 04:59:08PM +0100, Soeren Moch wrote:
> > to be consistent with kernel versions up to v5.9 (mmc aliases not used here).
> > usdhc1 is not wired up on this board and therefore cannot be used.
> > Start mmc aliases with usdhc2.
> >
> > Signed-off-by: Soeren Moch <smoch@web.de>
> > Cc: stable@vger.kernel.org # 5.10.x
>
> Can we have a Fixes tag as well?
Doesn't matter, since it's essentially just backport to 5.10 stable kernel.
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:[~2021-01-11 0:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-22 15:59 [PATCH] ARM: dts: tbs2910: rename MMC node aliases Soeren Moch
2021-01-11 0:31 ` Shawn Guo
2021-01-11 0:34 ` Shawn Guo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox