From: Christian Lamparter Date: Fri, 29 Apr 2016 00:53:14 +0000 (+0200) Subject: gpio: generic: fix GPIO_GENERIC_PLATFORM is set to module case X-Git-Tag: Ubuntu-5.10.0-12.13~12638^2~15 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8f01c9d05733db0071884b4af0003f8ac10513ae;p=mirror_ubuntu-hirsute-kernel.git gpio: generic: fix GPIO_GENERIC_PLATFORM is set to module case GPIO_GENERIC_PLATFORM is a tristate. If the module option is selected the resulting gpio-generic.ko will lack most of the module initialzation and probe code. Signed-off-by: Christian Lamparter Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-generic.c b/drivers/gpio/gpio-generic.c index 54cddfa98f50..6c1cb3b8c02c 100644 --- a/drivers/gpio/gpio-generic.c +++ b/drivers/gpio/gpio-generic.c @@ -549,7 +549,7 @@ int bgpio_init(struct gpio_chip *gc, struct device *dev, } EXPORT_SYMBOL_GPL(bgpio_init); -#ifdef CONFIG_GPIO_GENERIC_PLATFORM +#if IS_ENABLED(CONFIG_GPIO_GENERIC_PLATFORM) static void __iomem *bgpio_map(struct platform_device *pdev, const char *name,