Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'gpio-fixes-for-v6.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux

Pull gpio fixes from Bartosz Golaszewski:
"Another round of driver one-liners from the GPIO subsystem:

- disable pin control on MMP GPIOs in gpio-pxa

- fix the GPIO number passed to one of the pinctrl callbacks in
gpio-aspeed"

* tag 'gpio-fixes-for-v6.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config()
gpio: pxa: disable pinctrl calls for MMP_GPIO

+2 -1
+1 -1
drivers/gpio/gpio-aspeed.c
··· 973 973 else if (param == PIN_CONFIG_BIAS_DISABLE || 974 974 param == PIN_CONFIG_BIAS_PULL_DOWN || 975 975 param == PIN_CONFIG_DRIVE_STRENGTH) 976 - return pinctrl_gpio_set_config(offset, config); 976 + return pinctrl_gpio_set_config(chip->base + offset, config); 977 977 else if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN || 978 978 param == PIN_CONFIG_DRIVE_OPEN_SOURCE) 979 979 /* Return -ENOTSUPP to trigger emulation, as per datasheet */
+1
drivers/gpio/gpio-pxa.c
··· 237 237 switch (gpio_type) { 238 238 case PXA3XX_GPIO: 239 239 case MMP2_GPIO: 240 + case MMP_GPIO: 240 241 return false; 241 242 242 243 default: