mbox series

[GIT,PULL] pin control fixes for v5.16

Message ID CACRpkdb0H0NH4t5iRW6_ba=Mym1vH=yG+decH6O5uo9k2opcXw@mail.gmail.com
State New
Headers show
Series [GIT,PULL] pin control fixes for v5.16 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git tags/pinctrl-v5.16-2

Message

Linus Walleij Nov. 20, 2021, 2:26 a.m. UTC
Hi Linus,

here are some post-mergewindow fixes for the pin control subsystem.

There is an ACPI stubs fix which is ACKed by the ACPI maintainer
for merging through my tree.

One item stand out and that is that I delete the <linux/sdb.h> header
that is used by nothing. I deleted this subsystem (through the GPIO
tree) a while back so I feel responsible for tidying up the floor.

Other than that it is the usual mistakes, a bit noisy around build issue
and Kconfig then driver fixes.

Please pull it in!

Yours,
Linus Walleij

The following changes since commit fa55b7dcdc43c1aa1ba12bca9d2dd4318c2a0dbf:

  Linux 5.16-rc1 (2021-11-14 13:56:52 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
tags/pinctrl-v5.16-2

for you to fetch changes up to 62209e805b5c68577602a5803a71d8e2e11ee0d3:

  pinctrl: qcom: sm8350: Correct UFS and SDC offsets (2021-11-16 02:19:15 +0100)

----------------------------------------------------------------
Pin control fixes for the v5.16 kernel series:

- Fix some stubs causing compile issues for ACPI.

- Fix some wakeups on AMD IRQs shared between GPIO and SCI.

- Fix a build warning in the Tegra driver.

- Fix a Kconfig issue in the Qualcomm driver.

- Add a missing include the RALink driver.

- Return a valid type for the Apple pinctrl IRQs.

- Implement some Qualcomm SDM845 dual-edge errata.

- Remove the unused <linux/sdb.h> header. (The subsystem was
  once deleted by the pinctrl maintainer...)

- Fix a duplicate initialized in the Tegra driver.

- Fix register offsets for UFS and SDC in the Qualcomm SM8350
  driver.

----------------------------------------------------------------
Arnd Bergmann (1):
      pinctrl: tegra194: remove duplicate initializer again

Bjorn Andersson (2):
      pinctrl: qcom: sdm845: Enable dual edge errata
      pinctrl: qcom: sm8350: Correct UFS and SDC offsets

Jonathan Corbet (1):
      Remove unused header <linux/sdb.h>

Julian Braha (1):
      pinctrl: qcom: fix unmet dependencies on GPIOLIB for GPIOLIB_IRQCHIP

Mario Limonciello (2):
      ACPI: Add stubs for wakeup handler functions
      pinctrl: amd: Fix wakeups when IRQ is shared with SCI

Prathamesh Shete (1):
      pinctrl: tegra: Return const pointer from tegra_pinctrl_get_group()

Sergio Paracuellos (1):
      pinctrl: ralink: include 'ralink_regs.h' in 'pinctrl-mt7620.c'

Sven Peter (1):
      pinctrl: apple: Always return valid type in apple_gpio_irq_type

 drivers/pinctrl/pinctrl-amd.c            |  29 +++++-
 drivers/pinctrl/pinctrl-apple-gpio.c     |  12 +--
 drivers/pinctrl/qcom/Kconfig             |   2 +
 drivers/pinctrl/qcom/pinctrl-sdm845.c    |   1 +
 drivers/pinctrl/qcom/pinctrl-sm8350.c    |   8 +-
 drivers/pinctrl/ralink/pinctrl-mt7620.c  |   1 +
 drivers/pinctrl/tegra/pinctrl-tegra.c    |   4 +-
 drivers/pinctrl/tegra/pinctrl-tegra194.c |   1 -
 include/linux/acpi.h                     |   9 ++
 include/linux/sdb.h                      | 160 -------------------------------
 10 files changed, 51 insertions(+), 176 deletions(-)
 delete mode 100644 include/linux/sdb.h