summaryrefslogtreecommitdiff
path: root/drivers/mmc
diff options
context:
space:
mode:
authorCaleb Connolly <[email protected]>2024-04-12 20:10:21 +0200
committerCaleb Connolly <[email protected]>2024-04-23 13:29:13 +0200
commit0bfbd404efa8adee75e6d7fe5a8d70db98a7f4d5 (patch)
tree34072ae0c7840c78f2ea02c31e34f2e4299e0c0e /drivers/mmc
parent97666ed019ff3c4c7b8c1c95c8856e8756de39b8 (diff)
mmc: msm_sdhci: fix vendor_spec_cap0 registers
The addresses were mistakenly swapped. Put them right. Reported-by: Sumit Garg <[email protected]> Fixes: a737d8962cae ("mmc: msm_sdhci: correct vendor_spec_cap0 register for v5") Signed-off-by: Caleb Connolly <[email protected]>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/msm_sdhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/msm_sdhci.c b/drivers/mmc/msm_sdhci.c
index 2144772ac32..5e9d66526a8 100644
--- a/drivers/mmc/msm_sdhci.c
+++ b/drivers/mmc/msm_sdhci.c
@@ -256,13 +256,13 @@ static int msm_sdc_bind(struct udevice *dev)
static const struct msm_sdhc_variant_info msm_sdhc_mci_var = {
.mci_removed = false,
- .core_vendor_spec_capabilities0 = 0x21c,
+ .core_vendor_spec_capabilities0 = 0x11c,
};
static const struct msm_sdhc_variant_info msm_sdhc_v5_var = {
.mci_removed = true,
- .core_vendor_spec_capabilities0 = 0x11c,
+ .core_vendor_spec_capabilities0 = 0x21c,
};
static const struct udevice_id msm_mmc_ids[] = {