diff options
author | Pierluigi Passaro <pierluigi.p@variscite.com> | 2023-01-21 17:52:42 +0300 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2023-01-26 14:25:34 +0300 |
commit | 7c355b572ecdc17a426cf90511aaa143b293fa8b (patch) | |
tree | 8e214f3decc67da9b8e93f8d11b869446603b171 /arch/arm/mach-imx | |
parent | ebeb49f43c8952f12aa20f03f00d7009edc2d1c5 (diff) | |
download | linux-7c355b572ecdc17a426cf90511aaa143b293fa8b.tar.xz |
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 <pierluigi.p@variscite.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/mach-imx')
-rw-r--r-- | arch/arm/mach-imx/mach-imx6ul.c | 1 |
1 files changed, 1 insertions, 0 deletions
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, }; |