From: Fabio Estevam Date: Mon, 15 Feb 2021 11:58:15 +0000 (-0300) Subject: mmc: fsl_esdhc_imx: Add a compatible for i.MX51 X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=c3e6f99e7385f71cfb696827e82292962c40cbf6;p=u-boot.git mmc: fsl_esdhc_imx: Add a compatible for i.MX51 Add a compatible for i.MX51 so that i.MX51 can use this driver via driver model. Signed-off-by: Fabio Estevam Reviewed-by: Jaehoon Chung --- diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c index e0e132698e..c0e73202d6 100644 --- a/drivers/mmc/fsl_esdhc_imx.c +++ b/drivers/mmc/fsl_esdhc_imx.c @@ -1706,6 +1706,7 @@ static struct esdhc_soc_data usdhc_imx8qm_data = { }; static const struct udevice_id fsl_esdhc_ids[] = { + { .compatible = "fsl,imx51-esdhc", }, { .compatible = "fsl,imx53-esdhc", }, { .compatible = "fsl,imx6ul-usdhc", }, { .compatible = "fsl,imx6sx-usdhc", },