mbox series

[0/9] Mass convert GPIO IRQ chips to be immutable part 2

Message ID 20230316-immutable-chips-2-v1-0-053d6ede831b@linaro.org
Headers show
Series Mass convert GPIO IRQ chips to be immutable part 2 | expand

Message

Linus Walleij March 20, 2023, 9:55 a.m. UTC
Following up on my first series with this second series
concluding all the low-hanging immutable irqchip conversions
in the GPIO subsystem. These are all I could easily
convert.

The remaining irqchips are not using the GPIOLIB_IRQCHIP
for one or another reason, or too complex for me to
deal with. Mostly they are using generic irqchip, and
I guess those are fine as-is.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
Linus Walleij (9):
      gpio: rda: Convert to immutable irq_chip
      gpio: siox: Convert to immutable irq_chip
      gpio: stmpe: Convert to immutable irq_chip
      gpio: thunderx: Convert to immutable irq_chip
      gpio: tqmx86: Convert to immutable irq_chip
      gpio: visconti: Convert to immutable irq_chip
      gpio: xgs-iproc: Convert to immutable irq_chip
      gpio: xilinx: Convert to immutable irq_chip
      gpio: xlp: Convert to immutable irq_chip

 drivers/gpio/gpio-rda.c       | 22 +++++++------
 drivers/gpio/gpio-siox.c      | 75 ++++++++++++++++++++++---------------------
 drivers/gpio/gpio-stmpe.c     |  8 +++--
 drivers/gpio/gpio-thunderx.c  | 26 +++++++++------
 drivers/gpio/gpio-tqmx86.c    | 28 +++++++++++-----
 drivers/gpio/gpio-visconti.c  | 50 ++++++++++++++++++++++-------
 drivers/gpio/gpio-xgs-iproc.c | 32 ++++++++++++------
 drivers/gpio/gpio-xilinx.c    | 23 ++++++++-----
 drivers/gpio/gpio-xlp.c       | 14 ++++++--
 9 files changed, 181 insertions(+), 97 deletions(-)
---
base-commit: fe15c26ee26efa11741a7b632e9f23b01aca4cc6
change-id: 20230316-immutable-chips-2-ad2808db8054

Best regards,

Comments

Marc Zyngier March 20, 2023, 11:10 a.m. UTC | #1
On Mon, 20 Mar 2023 09:55:07 +0000,
Linus Walleij <linus.walleij@linaro.org> wrote:
> 
> Following up on my first series with this second series
> concluding all the low-hanging immutable irqchip conversions
> in the GPIO subsystem. These are all I could easily
> convert.
> 
> The remaining irqchips are not using the GPIOLIB_IRQCHIP
> for one or another reason, or too complex for me to
> deal with. Mostly they are using generic irqchip, and
> I guess those are fine as-is.
> 
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

FWIW:

Reviewed-by: Marc Zyngier <maz@kernel.org>

	M.
Bartosz Golaszewski March 22, 2023, 4:52 p.m. UTC | #2
On Mon, Mar 20, 2023 at 10:55 AM Linus Walleij <linus.walleij@linaro.org> wrote:
>
> Following up on my first series with this second series
> concluding all the low-hanging immutable irqchip conversions
> in the GPIO subsystem. These are all I could easily
> convert.
>
> The remaining irqchips are not using the GPIOLIB_IRQCHIP
> for one or another reason, or too complex for me to
> deal with. Mostly they are using generic irqchip, and
> I guess those are fine as-is.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Linus Walleij (9):
>       gpio: rda: Convert to immutable irq_chip
>       gpio: siox: Convert to immutable irq_chip
>       gpio: stmpe: Convert to immutable irq_chip
>       gpio: thunderx: Convert to immutable irq_chip
>       gpio: tqmx86: Convert to immutable irq_chip
>       gpio: visconti: Convert to immutable irq_chip
>       gpio: xgs-iproc: Convert to immutable irq_chip
>       gpio: xilinx: Convert to immutable irq_chip
>       gpio: xlp: Convert to immutable irq_chip
>
>  drivers/gpio/gpio-rda.c       | 22 +++++++------
>  drivers/gpio/gpio-siox.c      | 75 ++++++++++++++++++++++---------------------
>  drivers/gpio/gpio-stmpe.c     |  8 +++--
>  drivers/gpio/gpio-thunderx.c  | 26 +++++++++------
>  drivers/gpio/gpio-tqmx86.c    | 28 +++++++++++-----
>  drivers/gpio/gpio-visconti.c  | 50 ++++++++++++++++++++++-------
>  drivers/gpio/gpio-xgs-iproc.c | 32 ++++++++++++------
>  drivers/gpio/gpio-xilinx.c    | 23 ++++++++-----
>  drivers/gpio/gpio-xlp.c       | 14 ++++++--
>  9 files changed, 181 insertions(+), 97 deletions(-)
> ---
> base-commit: fe15c26ee26efa11741a7b632e9f23b01aca4cc6
> change-id: 20230316-immutable-chips-2-ad2808db8054
>
> Best regards,
> --
> Linus Walleij <linus.walleij@linaro.org>
>

Series applied, thanks!

Bart