Hi Lucas, On 23-02-07, Lucas Stach wrote: > All i.MX8M* DDRC nodes are compatible to "fsl,imx8m-ddrc". As the memory > size detection works the same on most of them, with the only exception > being the i.MX8MM, which only has a 16bit data bus, there is no need to ^ i.MX8MN apart of this the whole series lgtm, so feel free to add my Reviewed-by: Marco Felsch <m.felsch@xxxxxxxxxxxxxx> > match the more specific compatibles for i.MX8MQ/MM/MP. > > Signed-off-by: Lucas Stach <l.stach@xxxxxxxxxxxxxx> > --- > arch/arm/mach-imx/esdctl.c | 9 +++------ > 1 file changed, 3 insertions(+), 6 deletions(-) > > diff --git a/arch/arm/mach-imx/esdctl.c b/arch/arm/mach-imx/esdctl.c > index 043de477a77d..fc6db25de9e4 100644 > --- a/arch/arm/mach-imx/esdctl.c > +++ b/arch/arm/mach-imx/esdctl.c > @@ -652,7 +652,7 @@ static __maybe_unused struct imx_esdctl_data vf610_data = { > .add_mem = vf610_ddrmc_add_mem, > }; > > -static __maybe_unused struct imx_esdctl_data imx8mq_data = { > +static __maybe_unused struct imx_esdctl_data imx8m_data = { > .base0 = MX8M_DDR_CSD1_BASE_ADDR, > .add_mem = imx8m_ddrc_add_mem, > }; > @@ -732,14 +732,11 @@ static __maybe_unused struct of_device_id imx_esdctl_dt_ids[] = { > .compatible = "fsl,vf610-ddrmc", > .data = &vf610_data > }, { > - .compatible = "fsl,imx8mm-ddrc", > - .data = &imx8mq_data > + .compatible = "fsl,imx8m-ddrc", > + .data = &imx8m_data > }, { > .compatible = "fsl,imx8mn-ddrc", > .data = &imx8mn_data > - }, { > - .compatible = "fsl,imx8mq-ddrc", > - .data = &imx8mq_data > }, { > .compatible = "fsl,imx7d-ddrc", > .data = &imx7d_data > -- > 2.39.1 > > >