mbox series

[GIT,PULL] intel-gpio for 5.18-1

Message ID YhzBFbci4OnhfxTJ@black.fi.intel.com
State New
Headers show
Series [GIT,PULL] intel-gpio for 5.18-1 | expand

Pull-request

git@gitolite.kernel.org:pub/scm/linux/kernel/git/andy/linux-gpio-intel.git tags/intel-gpio-v5.18-1

Message

Andy Shevchenko Feb. 28, 2022, 12:33 p.m. UTC
Hi Linux GPIO  maintainers,

Set of (almost) Intel GPIO driver updates, which hanging in Linux Next for
a few weeks. No merge conflicts observed. Please, pull for v5.18-rc1.

Thanks,

With Best Regards,
Andy Shevchenko

The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:

  Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)

are available in the Git repository at:

  git@gitolite.kernel.org:pub/scm/linux/kernel/git/andy/linux-gpio-intel.git tags/intel-gpio-v5.18-1

for you to fetch changes up to a1ce76e89907a69713f729ff21db1efa00f3bb47:

  gpio: tps68470: Allow building as module (2022-01-24 17:23:15 +0200)

----------------------------------------------------------------
intel-gpio for v5.18-1

* Set IRQ bus token in gpio-crystalcove to avoid debugfs error
* Check return value of kstrdup() in gpio-merrifield to error out earlier
* Clean up couple of drivers from unneeded of_node usage
* Allow gpio-tps68470 to be built as module to reduce memory foot print

The following is an automated git shortlog grouped by driver:

altera-a10sr:
 -  Switch to use fwnode instead of of_node

crystalcove:
 -  Set IRQ domain bus token to DOMAIN_BUS_WIRED

merrifield:
 -  check the return value of devm_kstrdup()

tegra:
 -  Get rid of duplicate of_node assignment

tps68470:
 -  Allow building as module

----------------------------------------------------------------
Andy Shevchenko (2):
      gpio: altera-a10sr: Switch to use fwnode instead of of_node
      gpio: tegra: Get rid of duplicate of_node assignment

Hans de Goede (2):
      gpio: crystalcove: Set IRQ domain bus token to DOMAIN_BUS_WIRED
      gpio: tps68470: Allow building as module

Xiaoke Wang (1):
      gpio: merrifield: check the return value of devm_kstrdup()

 drivers/gpio/Kconfig             | 6 +-----
 drivers/gpio/gpio-altera-a10sr.c | 3 ++-
 drivers/gpio/gpio-crystalcove.c  | 9 ++++++++-
 drivers/gpio/gpio-merrifield.c   | 3 +++
 drivers/gpio/gpio-tegra.c        | 1 -
 drivers/gpio/gpio-tps68470.c     | 5 ++++-
 6 files changed, 18 insertions(+), 9 deletions(-)

Comments

Bartosz Golaszewski March 1, 2022, 3:53 p.m. UTC | #1
On Mon, Feb 28, 2022 at 1:33 PM Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
>
> Hi Linux GPIO  maintainers,
>
> Set of (almost) Intel GPIO driver updates, which hanging in Linux Next for
> a few weeks. No merge conflicts observed. Please, pull for v5.18-rc1.
>
> Thanks,
>
> With Best Regards,
> Andy Shevchenko
>
> The following changes since commit e783362eb54cd99b2cac8b3a9aeac942e6f6ac07:
>
>   Linux 5.17-rc1 (2022-01-23 10:12:53 +0200)
>
> are available in the Git repository at:
>
>   git@gitolite.kernel.org:pub/scm/linux/kernel/git/andy/linux-gpio-intel.git tags/intel-gpio-v5.18-1
>
> for you to fetch changes up to a1ce76e89907a69713f729ff21db1efa00f3bb47:
>
>   gpio: tps68470: Allow building as module (2022-01-24 17:23:15 +0200)
>
> ----------------------------------------------------------------
> intel-gpio for v5.18-1
>
> * Set IRQ bus token in gpio-crystalcove to avoid debugfs error
> * Check return value of kstrdup() in gpio-merrifield to error out earlier
> * Clean up couple of drivers from unneeded of_node usage
> * Allow gpio-tps68470 to be built as module to reduce memory foot print
>
> The following is an automated git shortlog grouped by driver:
>
> altera-a10sr:
>  -  Switch to use fwnode instead of of_node
>
> crystalcove:
>  -  Set IRQ domain bus token to DOMAIN_BUS_WIRED
>
> merrifield:
>  -  check the return value of devm_kstrdup()
>
> tegra:
>  -  Get rid of duplicate of_node assignment
>
> tps68470:
>  -  Allow building as module
>
> ----------------------------------------------------------------
> Andy Shevchenko (2):
>       gpio: altera-a10sr: Switch to use fwnode instead of of_node
>       gpio: tegra: Get rid of duplicate of_node assignment
>
> Hans de Goede (2):
>       gpio: crystalcove: Set IRQ domain bus token to DOMAIN_BUS_WIRED
>       gpio: tps68470: Allow building as module
>
> Xiaoke Wang (1):
>       gpio: merrifield: check the return value of devm_kstrdup()
>
>  drivers/gpio/Kconfig             | 6 +-----
>  drivers/gpio/gpio-altera-a10sr.c | 3 ++-
>  drivers/gpio/gpio-crystalcove.c  | 9 ++++++++-
>  drivers/gpio/gpio-merrifield.c   | 3 +++
>  drivers/gpio/gpio-tegra.c        | 1 -
>  drivers/gpio/gpio-tps68470.c     | 5 ++++-
>  6 files changed, 18 insertions(+), 9 deletions(-)
>
> --
> With Best Regards,
> Andy Shevchenko
>
>

Pulled, thanks!

Bart