mmc: msm_sdhci: fix vendor_spec_cap0 registers

The addresses were mistakenly swapped. Put them right.

Reported-by: Sumit Garg <sumit.garg@linaro.org>
Fixes: a737d8962cae ("mmc: msm_sdhci: correct vendor_spec_cap0 register for v5")
Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
This commit is contained in:
Caleb Connolly 2024-04-12 20:10:21 +02:00
parent 97666ed019
commit 0bfbd404ef
No known key found for this signature in database
GPG Key ID: 0583312B195F64B6

View File

@ -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[] = {