2023-01-21 14:58:20

by Pierluigi Passaro

[permalink] [raw]
Subject: [PATCH] ARM: imx: mach-imx6ul: add imx6ulz support

imx6ulz is derived SoC from imx6ull.
Currently, the boards based on imx6ulz are correctly recognized only if
the compatible includes "fsl,imx6ull", while "fsl,imx6ulz" is ignored.

Signed-off-by: Pierluigi Passaro <[email protected]>
---
arch/arm/mach-imx/mach-imx6ul.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/arm/mach-imx/mach-imx6ul.c b/arch/arm/mach-imx/mach-imx6ul.c
index 35e81201cb5d..dbf8d19cef11 100644
--- a/arch/arm/mach-imx/mach-imx6ul.c
+++ b/arch/arm/mach-imx/mach-imx6ul.c
@@ -63,6 +63,7 @@ static void __init imx6ul_init_late(void)
static const char * const imx6ul_dt_compat[] __initconst = {
"fsl,imx6ul",
"fsl,imx6ull",
+ "fsl,imx6ulz",
NULL,
};

--
2.37.2


2023-01-26 11:26:02

by Shawn Guo

[permalink] [raw]
Subject: Re: [PATCH] ARM: imx: mach-imx6ul: add imx6ulz support

On Sat, Jan 21, 2023 at 03:52:42PM +0100, Pierluigi Passaro wrote:
> imx6ulz is derived SoC from imx6ull.
> Currently, the boards based on imx6ulz are correctly recognized only if
> the compatible includes "fsl,imx6ull", while "fsl,imx6ulz" is ignored.
>
> Signed-off-by: Pierluigi Passaro <[email protected]>

Applied, thanks!