diff options
| author | Yang Xiwen <[email protected]> | 2023-04-01 19:17:34 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-05-03 09:05:24 -0400 |
| commit | 8a5dc8140e62901138f7c0b4aba459849882b8a1 (patch) | |
| tree | 79804ab1473ef74ce3949fd0965e2d79e0fbb022 /drivers | |
| parent | e90711f0e93ebe5350892907978565c51ec544a2 (diff) | |
mmc: hi6220_dw_mmc: add compatible for HC2910 support
It adds compatible "hisilicon,hi3798mv200-dw-mshc" for HC2910 SoC
Hi3798MV200 to probe this mmc driver.
Signed-off-by: Yang Xiwen <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mmc/hi6220_dw_mmc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/hi6220_dw_mmc.c b/drivers/mmc/hi6220_dw_mmc.c index 2cec5b9ae32..71962cd47e0 100644 --- a/drivers/mmc/hi6220_dw_mmc.c +++ b/drivers/mmc/hi6220_dw_mmc.c @@ -100,6 +100,8 @@ static const struct udevice_id hi6220_dwmmc_ids[] = { .data = (ulong)&hi6220_mmc_data }, { .compatible = "hisilicon,hi3798cv200-dw-mshc", .data = (ulong)&hi6220_mmc_data }, + { .compatible = "hisilicon,hi3798mv200-dw-mshc", + .data = (ulong)&hi6220_mmc_data }, { .compatible = "hisilicon,hi3660-dw-mshc", .data = (ulong)&hi3660_mmc_data }, { } |
