diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2019-01-17 12:09:51 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-01-25 12:12:57 -0500 |
commit | 94f139a9ce649fb5b569181b2e4fcc927b5370c2 (patch) | |
tree | 1c3dbe1f825289ebed0dcb0cebcbe268d186cc4f | |
parent | 8eef803a276c4b586ba5ad82e13485809934ffed (diff) | |
download | u-boot-94f139a9ce649fb5b569181b2e4fcc927b5370c2.zip u-boot-94f139a9ce649fb5b569181b2e4fcc927b5370c2.tar.gz u-boot-94f139a9ce649fb5b569181b2e4fcc927b5370c2.tar.bz2 |
mmc: hi6220_dw_mmc: add compatible for Poplar support
It adds compatible "hisilicon,hi3798cv200-dw-mshc" for Poplar SoC
Hi3798CV200 to probe this mmc driver.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
-rw-r--r-- | drivers/mmc/hi6220_dw_mmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/hi6220_dw_mmc.c b/drivers/mmc/hi6220_dw_mmc.c index cc58aff..effd1e4 100644 --- a/drivers/mmc/hi6220_dw_mmc.c +++ b/drivers/mmc/hi6220_dw_mmc.c @@ -77,6 +77,7 @@ static int hi6220_dwmmc_bind(struct udevice *dev) static const struct udevice_id hi6220_dwmmc_ids[] = { { .compatible = "hisilicon,hi6220-dw-mshc" }, + { .compatible = "hisilicon,hi3798cv200-dw-mshc" }, { } }; |