mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 04:36:13 +02:00
Merge tag 'mmc-2025-05-20' of https://source.denx.de/u-boot/custodians/u-boot-mmc
CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/26241 - Fix mmc cv1800b build without MMC_SUPPORTS_TUNING
This commit is contained in:
commit
a3e09b24ff
@ -31,6 +31,7 @@ static void cv1800b_sdhci_reset(struct sdhci_host *host, u8 mask)
|
||||
udelay(10);
|
||||
}
|
||||
|
||||
#if CONFIG_IS_ENABLED(MMC_SUPPORTS_TUNING)
|
||||
static int cv1800b_execute_tuning(struct mmc *mmc, u8 opcode)
|
||||
{
|
||||
struct sdhci_host *host = dev_get_priv(mmc->dev);
|
||||
@ -61,9 +62,12 @@ static int cv1800b_execute_tuning(struct mmc *mmc, u8 opcode)
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
const struct sdhci_ops cv1800b_sdhci_sd_ops = {
|
||||
#if CONFIG_IS_ENABLED(MMC_SUPPORTS_TUNING)
|
||||
.platform_execute_tuning = cv1800b_execute_tuning,
|
||||
#endif
|
||||
};
|
||||
|
||||
static int cv1800b_sdhci_bind(struct udevice *dev)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user