On Mon, Dec 16, 2013 at 8:05 AM, Baruch Siach <[email protected]> wrote:
> Prevent build failure when the selected variant does not support GPIO32. > > Signed-off-by: Baruch Siach <[email protected]> (...) > config XTENSA_VARIANT_FSF > bool "fsf - default (not generic) configuration" > select MMU > + select HAVE_XTENSA_GPIO32 (...) > +config HAVE_XTENSA_GPIO32 > + bool > + > config GPIO_XTENSA > bool "Xtensa GPIO32 support" > depends on XTENSA > + depends on HAVE_XTENSA_GPIO32 This is just a tautology, you don't need a helper bool for this. Instead just select GPIO_XTENSA from your affected platforms. The patch only needs to hit arch/arm/mach-xtensa/Kconfig. Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe linux-gpio" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
