[PATCH 0/3] gpio/pinctrl/mfd: use more common syntax for compound literals

Bartosz Golaszewski posted 3 patches 3 weeks, 1 day ago
drivers/gpio/gpio-amdpt.c                 | 2 +-
drivers/gpio/gpio-blzp1600.c              | 2 +-
drivers/gpio/gpio-dwapb.c                 | 2 +-
drivers/gpio/gpio-ep93xx.c                | 2 +-
drivers/gpio/gpio-ftgpio010.c             | 2 +-
drivers/gpio/gpio-ge.c                    | 2 +-
drivers/gpio/gpio-grgpio.c                | 2 +-
drivers/gpio/gpio-hisi.c                  | 2 +-
drivers/gpio/gpio-idt3243x.c              | 2 +-
drivers/gpio/gpio-ixp4xx.c                | 2 +-
drivers/gpio/gpio-loongson-64bit.c        | 2 +-
drivers/gpio/gpio-mlxbf.c                 | 2 +-
drivers/gpio/gpio-mlxbf2.c                | 2 +-
drivers/gpio/gpio-mlxbf3.c                | 2 +-
drivers/gpio/gpio-mpc8xxx.c               | 2 +-
drivers/gpio/gpio-mxs.c                   | 2 +-
drivers/gpio/gpio-rda.c                   | 2 +-
drivers/gpio/gpio-realtek-otto.c          | 2 +-
drivers/gpio/gpio-tb10x.c                 | 2 +-
drivers/gpio/gpio-ts4800.c                | 2 +-
drivers/gpio/gpio-vf610.c                 | 2 +-
drivers/gpio/gpio-visconti.c              | 2 +-
drivers/gpio/gpio-xgene-sb.c              | 2 +-
drivers/gpio/gpio-xgs-iproc.c             | 2 +-
drivers/mfd/vexpress-sysreg.c             | 2 +-
drivers/pinctrl/nuvoton/pinctrl-npcm7xx.c | 2 +-
drivers/pinctrl/nuvoton/pinctrl-npcm8xx.c | 2 +-
drivers/pinctrl/nuvoton/pinctrl-wpcm450.c | 2 +-
drivers/pinctrl/pinctrl-equilibrium.c     | 2 +-
drivers/pinctrl/stm32/pinctrl-stm32-hdp.c | 2 +-
30 files changed, 30 insertions(+), 30 deletions(-)
[PATCH 0/3] gpio/pinctrl/mfd: use more common syntax for compound literals
Posted by Bartosz Golaszewski 3 weeks, 1 day ago
As discussed[1] with Andy: it's probably better to use a more common
syntax for compound literals so fix the commits that converted GPIO
chips to using the new generic GPIO chip API and make them explicitly
spell out the type they're initializing.

Each commit in this series can go directly into its respective tree:
MFD, pinctrl and GPIO.

[1] https://lore.kernel.org/all/20250909-gpio-mmio-gpio-conv-part4-v1-13-9f723dc3524a@linaro.org/

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
---
Bartosz Golaszewski (3):
      mfd: vexpress-sysreg: use more common syntax for compound literals
      pinctrl: use more common syntax for compound literals
      gpio: use more common syntax for compound literals

 drivers/gpio/gpio-amdpt.c                 | 2 +-
 drivers/gpio/gpio-blzp1600.c              | 2 +-
 drivers/gpio/gpio-dwapb.c                 | 2 +-
 drivers/gpio/gpio-ep93xx.c                | 2 +-
 drivers/gpio/gpio-ftgpio010.c             | 2 +-
 drivers/gpio/gpio-ge.c                    | 2 +-
 drivers/gpio/gpio-grgpio.c                | 2 +-
 drivers/gpio/gpio-hisi.c                  | 2 +-
 drivers/gpio/gpio-idt3243x.c              | 2 +-
 drivers/gpio/gpio-ixp4xx.c                | 2 +-
 drivers/gpio/gpio-loongson-64bit.c        | 2 +-
 drivers/gpio/gpio-mlxbf.c                 | 2 +-
 drivers/gpio/gpio-mlxbf2.c                | 2 +-
 drivers/gpio/gpio-mlxbf3.c                | 2 +-
 drivers/gpio/gpio-mpc8xxx.c               | 2 +-
 drivers/gpio/gpio-mxs.c                   | 2 +-
 drivers/gpio/gpio-rda.c                   | 2 +-
 drivers/gpio/gpio-realtek-otto.c          | 2 +-
 drivers/gpio/gpio-tb10x.c                 | 2 +-
 drivers/gpio/gpio-ts4800.c                | 2 +-
 drivers/gpio/gpio-vf610.c                 | 2 +-
 drivers/gpio/gpio-visconti.c              | 2 +-
 drivers/gpio/gpio-xgene-sb.c              | 2 +-
 drivers/gpio/gpio-xgs-iproc.c             | 2 +-
 drivers/mfd/vexpress-sysreg.c             | 2 +-
 drivers/pinctrl/nuvoton/pinctrl-npcm7xx.c | 2 +-
 drivers/pinctrl/nuvoton/pinctrl-npcm8xx.c | 2 +-
 drivers/pinctrl/nuvoton/pinctrl-wpcm450.c | 2 +-
 drivers/pinctrl/pinctrl-equilibrium.c     | 2 +-
 drivers/pinctrl/stm32/pinctrl-stm32-hdp.c | 2 +-
 30 files changed, 30 insertions(+), 30 deletions(-)
---
base-commit: 65dd046ef55861190ecde44c6d9fcde54b9fb77d
change-id: 20250909-make-compound-literals-normal-again-13073cc74b94

Best regards,
-- 
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Re: [PATCH 0/3] gpio/pinctrl/mfd: use more common syntax for compound literals
Posted by Andy Shevchenko 3 weeks ago
On Wed, Sep 10, 2025 at 09:25:44AM +0200, Bartosz Golaszewski wrote:
> As discussed[1] with Andy: it's probably better to use a more common
> syntax for compound literals so fix the commits that converted GPIO
> chips to using the new generic GPIO chip API and make them explicitly
> spell out the type they're initializing.
> 
> Each commit in this series can go directly into its respective tree:
> MFD, pinctrl and GPIO.

Thank you! All look good to me,
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>

> [1] https://lore.kernel.org/all/20250909-gpio-mmio-gpio-conv-part4-v1-13-9f723dc3524a@linaro.org/

-- 
With Best Regards,
Andy Shevchenko
Re: (subset) [PATCH 0/3] gpio/pinctrl/mfd: use more common syntax for compound literals
Posted by Bartosz Golaszewski 2 weeks, 6 days ago
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>


On Wed, 10 Sep 2025 09:25:44 +0200, Bartosz Golaszewski wrote:
> As discussed[1] with Andy: it's probably better to use a more common
> syntax for compound literals so fix the commits that converted GPIO
> chips to using the new generic GPIO chip API and make them explicitly
> spell out the type they're initializing.
> 
> Each commit in this series can go directly into its respective tree:
> MFD, pinctrl and GPIO.
> 
> [...]

Applied, thanks!

[3/3] gpio: use more common syntax for compound literals
      https://git.kernel.org/brgl/linux/c/7eee64e8be51f9ff0393b5bd0752a6e8f9252bf9

Best regards,
-- 
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>