Re: [PATCH v9 01/22] gpio: guard gpiochip_irqchip_add_domain() with GPIOLIB_IRQCHIP

2021-03-29 Thread Linus Walleij
On Fri, Mar 26, 2021 at 2:14 PM Bartosz Golaszewski wrote: > I suppose this will go through the pinctrl tree. Yups I applied them. To make things mess-resistant I have applied them on an immutable branch and then merged that to devel: https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux

Re: [PATCH v9 01/22] gpio: guard gpiochip_irqchip_add_domain() with GPIOLIB_IRQCHIP

2021-03-26 Thread Bartosz Golaszewski
On Wed, Mar 24, 2021 at 9:19 AM Álvaro Fernández Rojas wrote: > > The current code doesn't check if GPIOLIB_IRQCHIP is enabled, which results in > a compilation error when trying to build gpio-regmap if CONFIG_GPIOLIB_IRQCHIP > isn't enabled. > > Fixes: 6a45b0e2589f ("gpiolib: Introduce gpiochip_i

[PATCH v9 01/22] gpio: guard gpiochip_irqchip_add_domain() with GPIOLIB_IRQCHIP

2021-03-24 Thread Álvaro Fernández Rojas
The current code doesn't check if GPIOLIB_IRQCHIP is enabled, which results in a compilation error when trying to build gpio-regmap if CONFIG_GPIOLIB_IRQCHIP isn't enabled. Fixes: 6a45b0e2589f ("gpiolib: Introduce gpiochip_irqchip_add_domain()") Suggested-by: Michael Walle Signed-off-by: Álvaro F