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

Pierluigi Passaro posted 1 patch 2 years, 7 months ago
arch/arm/mach-imx/mach-imx6ul.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] ARM: imx: mach-imx6ul: add imx6ulz support
Posted by Pierluigi Passaro 2 years, 7 months ago
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 <pierluigi.p@variscite.com>
---
 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
Re: [PATCH] ARM: imx: mach-imx6ul: add imx6ulz support
Posted by Shawn Guo 2 years, 7 months ago
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 <pierluigi.p@variscite.com>

Applied, thanks!