]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
pinctrl: renesas: Replace ifdeffery with IS_ENABLED()
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Tue, 28 Feb 2023 06:25:52 +0000 (07:25 +0100)
committerMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 18 Mar 2023 11:02:38 +0000 (12:02 +0100)
Switch ifdef in sh_gpio_get_value() to IS_ENABLED() macro.
The CONFIG_RCAR_GEN3 will never have SPL counterpart, so
the IS_ENABLED() macro is the right one here. No functional
change, except for improved build test coverage.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
drivers/gpio/sh_pfc.c

index 988f7e9bbadb398f4005134f7c21d87729433333..92522b63bbe03de8358ea46f7db84dd5ec1a9bbf 100644 (file)
@@ -568,10 +568,10 @@ static int sh_gpio_get_value(struct pinmux_info *gpioc, unsigned gpio)
 
        if (!gpioc || get_data_reg(gpioc, gpio, &dr, &bit) != 0)
                return -1;
-#if defined(CONFIG_RCAR_GEN3)
-       if ((gpioc->gpios[gpio].flags & PINMUX_FLAG_TYPE) == PINMUX_TYPE_INPUT)
+
+       if (IS_ENABLED(CONFIG_RCAR_GEN3) &&
+           ((gpioc->gpios[gpio].flags & PINMUX_FLAG_TYPE) == PINMUX_TYPE_INPUT))
                offset += 4;
-#endif
 
        return gpio_read_bit(dr, offset, bit);
 }