| From fecd6098dd6d429d154ed49f2bdaa514bf5d7440 Mon Sep 17 00:00:00 2001 |
| From: Dmitry Osipenko <digetx@gmail.com> |
| Date: Mon, 6 Jan 2020 04:51:54 +0300 |
| Subject: [PATCH] gpio: max77620: Add missing dependency on GPIOLIB_IRQCHIP |
| MIME-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| commit c5706c7defc79de68a115b5536376298a8fef111 upstream. |
| |
| Driver fails to compile in a minimized kernel's configuration because of |
| the missing dependency on GPIOLIB_IRQCHIP. |
| |
| error: ‘struct gpio_chip’ has no member named ‘irq’ |
| 44 | virq = irq_find_mapping(gpio->gpio_chip.irq.domain, offset); |
| |
| Signed-off-by: Dmitry Osipenko <digetx@gmail.com> |
| Link: https://lore.kernel.org/r/20200106015154.12040-1-digetx@gmail.com |
| Signed-off-by: Linus Walleij <linus.walleij@linaro.org> |
| Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com> |
| |
| diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig |
| index acd40eb51c46..8bdd73167d24 100644 |
| --- a/drivers/gpio/Kconfig |
| +++ b/drivers/gpio/Kconfig |
| @@ -1106,6 +1106,7 @@ config GPIO_MADERA |
| config GPIO_MAX77620 |
| tristate "GPIO support for PMIC MAX77620 and MAX20024" |
| depends on MFD_MAX77620 |
| + select GPIOLIB_IRQCHIP |
| help |
| GPIO driver for MAX77620 and MAX20024 PMIC from Maxim Semiconductor. |
| MAX77620 PMIC has 8 pins that can be configured as GPIOs. The |
| -- |
| 2.7.4 |
| |