Hi Linus, here are some pin control fixes for the v6.12 series, mostly error paths, but one pretty serious interrupt problem in the Ocelot driver as well. Details in the signed tag! Please pull it in! Yours, Linus Walleij The following changes since commit 9852d85ec9d492ebef56dc5f229416c925758edc: Linux 6.12-rc1 (2024-09-29 15:06:19 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git tags/pinctrl-v6.12-2 for you to fetch changes up to 93b8ddc54507a227087c60a0013ed833b6ae7d3c: pinctrl: ocelot: fix system hang on level based interrupts (2024-10-12 22:04:38 +0200) ---------------------------------------------------------------- Pin control fixes for the v6.12 kernel series: - Fix two error paths and a missing semicolon in the Intel driver. - Add a missing ACPI ID for the Intel Panther Lake. - Check return value of devm_kasprintf() in the Apple and STM32 drivers. - Add a missing mutex_destroy() in the aw9523 driver. - Fix a double free in cv1800_pctrl_dt_node_to_map() in the Sophgo driver. - Fix a double free in ma35_pinctrl_dt_node_to_map_func() in the Nuvoton driver. - Fix a bug in the Ocelot interrupt handler making the system hang. ---------------------------------------------------------------- Andy Shevchenko (2): Merge patch series "pinctrl: intel: platform: fix error path in device_for_each_child_node()" pinctrl: intel: platform: Add Panther Lake to the list of supported Harshit Mogalapalli (2): pinctrl: sophgo: fix double free in cv1800_pctrl_dt_node_to_map() pinctrl: nuvoton: fix a double free in ma35_pinctrl_dt_node_to_map_func() Javier Carrasco (2): pinctrl: intel: platform: fix error path in device_for_each_child_node() pinctrl: intel: platform: use semicolon instead of comma in ncommunities assignment Linus Walleij (1): Merge tag 'intel-pinctrl-v6.12-2' of git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel into fixes Ma Ke (2): pinctrl: apple: check devm_kasprintf() returned value pinctrl: stm32: check devm_kasprintf() returned value Rosen Penev (1): pinctrl: aw9523: add missing mutex_destroy Sergey Matsievskiy (1): pinctrl: ocelot: fix system hang on level based interrupts drivers/pinctrl/intel/Kconfig | 1 + drivers/pinctrl/intel/pinctrl-intel-platform.c | 5 ++--- drivers/pinctrl/nuvoton/pinctrl-ma35.c | 2 +- drivers/pinctrl/pinctrl-apple-gpio.c | 3 +++ drivers/pinctrl/pinctrl-aw9523.c | 6 ++++-- drivers/pinctrl/pinctrl-ocelot.c | 8 ++++---- drivers/pinctrl/sophgo/pinctrl-cv18xx.c | 2 +- drivers/pinctrl/stm32/pinctrl-stm32.c | 9 +++++++-- 8 files changed, 23 insertions(+), 13 deletions(-)