]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mmc: tmio: Use IS_ENABLED() to check for CONFIG_ option
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 8 Apr 2023 17:35:37 +0000 (19:35 +0200)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Sun, 16 Apr 2023 14:16:20 +0000 (16:16 +0200)
Use IS_ENABLED() instead of CONFIG_IS_ENABLED() to check for CONFIG_
option which is identical across all of U-Boot and xPL builds.

Fixes: 2769ddc99fd ("mmc: tmio: Replace ifdeffery with IS_ENABLED/CONFIG_IS_ENABLED macros")
Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
drivers/mmc/tmio-common.c

index 8d7ee481d64d73f4a9b85db304246dfa37bf9f2d..d1e26815996fe63d52b5e88c908ff344c4b07468 100644 (file)
@@ -378,7 +378,7 @@ static bool tmio_sd_addr_is_dmaable(struct mmc_data *data)
        }
 
 #ifdef CONFIG_SPL_BUILD
-       if (IS_ENABLED(CONFIG_ARCH_UNIPHIER) && !CONFIG_IS_ENABLED(CONFIG_ARM64)) {
+       if (IS_ENABLED(CONFIG_ARCH_UNIPHIER) && !IS_ENABLED(CONFIG_ARM64)) {
                /*
                 * For UniPhier ARMv7 SoCs, the stack is allocated in locked
                 * ways of L2, which is unreachable from the DMA engine.