mmc: core: Respect quirk_max_rate for non-UHS SDIO card

The card-quirk was added to limit the clock-rate for a card with UHS-mode
support, although let's respect the quirk for non-UHS mode too, to make the
behaviour consistent.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Message-ID: <1732268242-72799-1-git-send-email-shawn.lin@rock-chips.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
Shawn Lin 2024-11-22 17:37:22 +08:00 committed by Ulf Hansson
parent fac04efc5c
commit a2a44f8da2
1 changed files with 2 additions and 0 deletions

View File

@ -458,6 +458,8 @@ static unsigned mmc_sdio_get_max_clock(struct mmc_card *card)
if (mmc_card_sd_combo(card))
max_dtr = min(max_dtr, mmc_sd_get_max_clock(card));
max_dtr = min_not_zero(max_dtr, card->quirk_max_rate);
return max_dtr;
}