linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] GPIO fixes for v5.3
@ 2019-09-08  8:00 Linus Walleij
  2019-09-08 17:25 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2019-09-08  8:00 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: open list:GPIO SUBSYSTEM, linux-kernel, Bartosz Golaszewski

Hi Linus,

some (hopefully last) small GPIO fix for the v5.3 series.
Just affecting PCA953x expanders. Details in the tag.

Please pull it in!

Yours,
Linus Walleij

The following changes since commit a55aa89aab90fae7c815b0551b07be37db359d76:

  Linux 5.3-rc6 (2019-08-25 12:01:23 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
tags/gpio-v5.3-5

for you to fetch changes up to 89f2c0425cb51e38d6b39795c08d55421bec680c:

  Merge tag 'gpio-v5.3-rc7-fixes-for-linus' of
git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux into fixes
(2019-08-30 15:28:04 +0200)

----------------------------------------------------------------
GPIO fixes for the v5.3 series:
all related to the PCA953x driver when handling chips with
more than 8 ports, now that works again.

----------------------------------------------------------------
David Jander (2):
      gpio: pca953x: correct type of reg_direction
      gpio: pca953x: use pca953x_read_regs instead of regmap_bulk_read

Linus Walleij (1):
      Merge tag 'gpio-v5.3-rc7-fixes-for-linus' of
git://git.kernel.org/.../brgl/linux into fixes

 drivers/gpio/gpio-pca953x.c | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] GPIO fixes for v5.3
  2019-09-08  8:00 [GIT PULL] GPIO fixes for v5.3 Linus Walleij
@ 2019-09-08 17:25 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2019-09-08 17:25 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Linus Torvalds, open list:GPIO SUBSYSTEM, linux-kernel,
	Bartosz Golaszewski

The pull request you sent on Sun, 8 Sep 2019 09:00:26 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git tags/gpio-v5.3-5

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/def8b72f0e40f2c9d9f1843af020a955e36a7cf4

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] GPIO fixes for v5.3
  2019-08-24 21:17 Linus Walleij
@ 2019-08-24 21:50 ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2019-08-24 21:50 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Linus Torvalds, linux-kernel, open list:GPIO SUBSYSTEM,
	Bartosz Golaszewski

The pull request you sent on Sat, 24 Aug 2019 23:17:54 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git tags/gpio-v5.3-4

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/083f0f2cd402df40f62e16b1e4208e6033f52aba

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] GPIO fixes for v5.3
@ 2019-08-24 21:17 Linus Walleij
  2019-08-24 21:50 ` pr-tracker-bot
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2019-08-24 21:17 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-kernel, open list:GPIO SUBSYSTEM, Bartosz Golaszewski

Hi Linus,

here is a (hopefully last) set of GPIO fixes for the v5.3 kernel
cycle. Two are pretty core.

Please pull them in! Details in the signed tag.

Yours,
Linus Walleij

The following changes since commit d45331b00ddb179e291766617259261c112db872:

  Linux 5.3-rc4 (2019-08-11 13:26:41 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
tags/gpio-v5.3-4

for you to fetch changes up to 48057ed1840fde9239b1e000bea1a0a1f07c5e99:

  gpio: Fix irqchip initialization order (2019-08-23 11:00:43 +0200)

----------------------------------------------------------------
GPIO fixes for the v5.3 kernel:

- Fix not reporting open drain/source lines to userspace as "input"
- Fix a minor build error found in randconfigs
- Fix a chip select quirk on the Freescale SPI
- Fix the irqchip initialization semantic order to reflect what
  it was using the old API

----------------------------------------------------------------
Andreas Kemnade (1):
      gpio: of: fix Freescale SPI CS quirk handling

Bartosz Golaszewski (1):
      gpiolib: never report open-drain/source lines as 'input' to user-space

Linus Walleij (1):
      gpio: Fix irqchip initialization order

YueHaibing (1):
      gpio: Fix build error of function redefinition

 drivers/gpio/gpiolib-of.c |  2 +-
 drivers/gpio/gpiolib.c    | 36 +++++++++++++++++++-----------------
 include/linux/gpio.h      | 24 ------------------------
 3 files changed, 20 insertions(+), 42 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-09-08 17:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-08  8:00 [GIT PULL] GPIO fixes for v5.3 Linus Walleij
2019-09-08 17:25 ` pr-tracker-bot
  -- strict thread matches above, loose matches on Subject: below --
2019-08-24 21:17 Linus Walleij
2019-08-24 21:50 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).