mmc: renesas_sdhi: use new convenience macro from MMC core
authorWolfram Sang <wsa+renesas@sang-engineering.com>
Sun, 20 Nov 2022 11:34:57 +0000 (12:34 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Wed, 7 Dec 2022 12:22:37 +0000 (13:22 +0100)
Makes the code more readable.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Tested-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Link: https://lore.kernel.org/r/20221120113457.42010-5-wsa+renesas@sang-engineering.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/renesas_sdhi_core.c

index ad8f79f..345934e 100644 (file)
@@ -1073,8 +1073,7 @@ int renesas_sdhi_probe(struct platform_device *pdev,
 
        /* Enable tuning iff we have an SCC and a supported mode */
        if (priv->scc_ctl && (host->mmc->caps & MMC_CAP_UHS_SDR104 ||
-           host->mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR |
-                               MMC_CAP2_HS400_1_8V))) {
+           host->mmc->caps2 & MMC_CAP2_HSX00_1_8V)) {
                const struct renesas_sdhi_scc *taps = of_data->taps;
                bool use_4tap = sdhi_has_quirk(priv, hs400_4taps);
                bool hit = false;