[PATCH v5 0/2] gpio: Add gpio-latch driver

Sascha Hauer posted 2 patches 3 years, 5 months ago
.../devicetree/bindings/gpio/gpio-latch.yaml  |  94 ++++++++
drivers/gpio/Kconfig                          |   6 +
drivers/gpio/Makefile                         |   1 +
drivers/gpio/gpio-latch.c                     | 220 ++++++++++++++++++
4 files changed, 321 insertions(+)
create mode 100644 Documentation/devicetree/bindings/gpio/gpio-latch.yaml
create mode 100644 drivers/gpio/gpio-latch.c
[PATCH v5 0/2] gpio: Add gpio-latch driver
Posted by Sascha Hauer 3 years, 5 months ago
This series includes the changes requested by Serge Semin for v4.

Sascha

Sascha Hauer (2):
  gpio: Add gpio latch driver
  dt-bindings: gpio: Add gpio-latch binding document

 .../devicetree/bindings/gpio/gpio-latch.yaml  |  94 ++++++++
 drivers/gpio/Kconfig                          |   6 +
 drivers/gpio/Makefile                         |   1 +
 drivers/gpio/gpio-latch.c                     | 220 ++++++++++++++++++
 4 files changed, 321 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/gpio/gpio-latch.yaml
 create mode 100644 drivers/gpio/gpio-latch.c

-- 
2.30.2
Re: [PATCH v5 0/2] gpio: Add gpio-latch driver
Posted by Bartosz Golaszewski 3 years, 5 months ago
On Fri, Oct 7, 2022 at 1:47 PM Sascha Hauer <s.hauer@pengutronix.de> wrote:
>
> This series includes the changes requested by Serge Semin for v4.
>
> Sascha
>
> Sascha Hauer (2):
>   gpio: Add gpio latch driver
>   dt-bindings: gpio: Add gpio-latch binding document
>
>  .../devicetree/bindings/gpio/gpio-latch.yaml  |  94 ++++++++
>  drivers/gpio/Kconfig                          |   6 +
>  drivers/gpio/Makefile                         |   1 +
>  drivers/gpio/gpio-latch.c                     | 220 ++++++++++++++++++
>  4 files changed, 321 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/gpio/gpio-latch.yaml
>  create mode 100644 drivers/gpio/gpio-latch.c
>
> --
> 2.30.2
>

I reversed the order of the patches, fixed the strange formatting of
struct of_device_id and queued the series.

Bartosz