mbox series

[RESEND,0/7] Migrate ACCES and WinSystems drivers to the regmap API

Message ID cover.1691703927.git.william.gray@linaro.org
Headers show
Series Migrate ACCES and WinSystems drivers to the regmap API | expand

Message

William Breathitt Gray Aug. 10, 2023, 10 p.m. UTC
This patchset is a collection and resend of the lingering GPIO patches
for the regmap migration of the ACCES and WinSystems drivers.[^1][^2]
Previously, these patches were postponed due to pending dependency
patches that have since been merged into mainline. Now that those
dependencies are present in the GPIO tree, this patchset can be merged
without incident. An IRQ handling fix for the ws16c48 driver is also
included at the end.[^3]

[^1] https://lore.kernel.org/all/cover.1680618405.git.william.gray@linaro.org/
[^2] https://lore.kernel.org/all/cover.1680708357.git.william.gray@linaro.org/
[^3] https://lore.kernel.org/all/20230228081724.94786-1-william.gray@linaro.org/

William Breathitt Gray (7):
  gpio: idio-16: Migrate to the regmap API
  gpio: 104-idio-16: Migrate to the regmap API
  gpio: pci-idio-16: Migrate to the regmap API
  gpio: idio-16: Remove unused legacy interface
  gpio: pcie-idio-24: Migrate to the regmap API
  gpio: ws16c48: Migrate to the regmap API
  gpio: ws16c48: Fix off-by-one error in WS16C48 resource region extent

 drivers/gpio/Kconfig             |  13 +-
 drivers/gpio/gpio-104-idio-16.c  | 286 +++----------
 drivers/gpio/gpio-idio-16.c      | 254 ++++++------
 drivers/gpio/gpio-idio-16.h      |  79 +---
 drivers/gpio/gpio-pci-idio-16.c  | 294 +++-----------
 drivers/gpio/gpio-pcie-idio-24.c | 677 +++++++++++--------------------
 drivers/gpio/gpio-ws16c48.c      | 554 +++++++++----------------
 7 files changed, 728 insertions(+), 1429 deletions(-)


base-commit: 87d0688483f56c748b37a5298bdc382df5cf8f74

Comments

Linus Walleij Aug. 11, 2023, 9:32 a.m. UTC | #1
On Fri, Aug 11, 2023 at 12:00 AM William Breathitt Gray
<william.gray@linaro.org> wrote:

> This patchset is a collection and resend of the lingering GPIO patches
> for the regmap migration of the ACCES and WinSystems drivers.[^1][^2]
> Previously, these patches were postponed due to pending dependency
> patches that have since been merged into mainline. Now that those
> dependencies are present in the GPIO tree, this patchset can be merged
> without incident. An IRQ handling fix for the ws16c48 driver is also
> included at the end.[^3]

The series:
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

The result is really nice!

Yours,
Linus Walleij
Bartosz Golaszewski Aug. 11, 2023, 12:24 p.m. UTC | #2
On Fri, Aug 11, 2023 at 12:01 AM William Breathitt Gray
<william.gray@linaro.org> wrote:
>
> This patchset is a collection and resend of the lingering GPIO patches
> for the regmap migration of the ACCES and WinSystems drivers.[^1][^2]
> Previously, these patches were postponed due to pending dependency
> patches that have since been merged into mainline. Now that those
> dependencies are present in the GPIO tree, this patchset can be merged
> without incident. An IRQ handling fix for the ws16c48 driver is also
> included at the end.[^3]
>
> [^1] https://lore.kernel.org/all/cover.1680618405.git.william.gray@linaro.org/
> [^2] https://lore.kernel.org/all/cover.1680708357.git.william.gray@linaro.org/
> [^3] https://lore.kernel.org/all/20230228081724.94786-1-william.gray@linaro.org/
>
> William Breathitt Gray (7):
>   gpio: idio-16: Migrate to the regmap API
>   gpio: 104-idio-16: Migrate to the regmap API
>   gpio: pci-idio-16: Migrate to the regmap API
>   gpio: idio-16: Remove unused legacy interface
>   gpio: pcie-idio-24: Migrate to the regmap API
>   gpio: ws16c48: Migrate to the regmap API
>   gpio: ws16c48: Fix off-by-one error in WS16C48 resource region extent
>
>  drivers/gpio/Kconfig             |  13 +-
>  drivers/gpio/gpio-104-idio-16.c  | 286 +++----------
>  drivers/gpio/gpio-idio-16.c      | 254 ++++++------
>  drivers/gpio/gpio-idio-16.h      |  79 +---
>  drivers/gpio/gpio-pci-idio-16.c  | 294 +++-----------
>  drivers/gpio/gpio-pcie-idio-24.c | 677 +++++++++++--------------------
>  drivers/gpio/gpio-ws16c48.c      | 554 +++++++++----------------
>  7 files changed, 728 insertions(+), 1429 deletions(-)
>
>
> base-commit: 87d0688483f56c748b37a5298bdc382df5cf8f74
> --
> 2.41.0
>

Queued the last patch for fixes and the rest for v6.6.

Bart