diff options
author | Fabio Estevam <festevam@gmail.com> | 2021-02-15 08:58:15 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2021-03-01 10:21:36 +0100 |
commit | c3e6f99e7385f71cfb696827e82292962c40cbf6 (patch) | |
tree | 50ce73d457a1656804511bf7ecee23378f2c4793 /drivers/mmc | |
parent | 9a68a2be8eb3680264339b778e287cbc1c3ebdd0 (diff) | |
download | u-boot-c3e6f99e7385f71cfb696827e82292962c40cbf6.zip u-boot-c3e6f99e7385f71cfb696827e82292962c40cbf6.tar.gz u-boot-c3e6f99e7385f71cfb696827e82292962c40cbf6.tar.bz2 |
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 <festevam@gmail.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/fsl_esdhc_imx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c index e0e1326..c0e7320 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", }, |