mbox series

[0/7] VF610 GPIO fixes/improvments

Message ID 20190311062737.6652-1-andrew.smirnov@gmail.com
Headers show
Series VF610 GPIO fixes/improvments | expand

Message

Andrey Smirnov March 11, 2019, 6:27 a.m. UTC
Everyone:

This series contains a number of fixes/improvements I came up with
while working VF610 GPIO code. Hopefully each commit is
self-explanatory.

Feedback is welcome!

Thanks,
Andrey Smirnov

Andrey Smirnov (7):
  gpio: vf610: Do not share irq_chip
  gpio: vf610: Simplify vf610_gpio_set()
  gpio: vf610: Simplify vf610_gpio_get()
  gpio: vf610: Use devres to disable clk_port
  gpio: vf610: Use devres to disable clk_gpio
  gpio: vf610: Use devres to remove gpiochip
  gpio: vf610: Don't use explicit &pdev->dev in vf610_gpio_probe()

 drivers/gpio/gpio-vf610.c | 85 +++++++++++++++++----------------------
 1 file changed, 36 insertions(+), 49 deletions(-)

Comments

Bartosz Golaszewski March 11, 2019, 9:55 a.m. UTC | #1
pon., 11 mar 2019 o 07:28 Andrey Smirnov <andrew.smirnov@gmail.com> napisaƂ(a):
>
> Everyone:
>
> This series contains a number of fixes/improvements I came up with
> while working VF610 GPIO code. Hopefully each commit is
> self-explanatory.
>
> Feedback is welcome!
>
> Thanks,
> Andrey Smirnov
>
> Andrey Smirnov (7):
>   gpio: vf610: Do not share irq_chip
>   gpio: vf610: Simplify vf610_gpio_set()
>   gpio: vf610: Simplify vf610_gpio_get()
>   gpio: vf610: Use devres to disable clk_port
>   gpio: vf610: Use devres to disable clk_gpio
>   gpio: vf610: Use devres to remove gpiochip
>   gpio: vf610: Don't use explicit &pdev->dev in vf610_gpio_probe()
>
>  drivers/gpio/gpio-vf610.c | 85 +++++++++++++++++----------------------
>  1 file changed, 36 insertions(+), 49 deletions(-)
>
> --
> 2.20.1
>

Nice cleanups! Series applied, thanks!

Bart