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.17-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux

Pull gpio fixes from Bartosz Golaszewski:

- fix an off-by-one bug in interrupt handling in gpio-timberdale

- update MAINTAINERS

* tag 'gpio-fixes-for-v6.17-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
MAINTAINERS: Change Altera-PIO driver maintainer
gpio: timberdale: fix off-by-one in IRQ type boundary check

+2 -2
+1 -1
MAINTAINERS
··· 931 931 F: drivers/dma/altera-msgdma.c 932 932 933 933 ALTERA PIO DRIVER 934 - M: Mun Yew Tham <mun.yew.tham@intel.com> 934 + M: Adrian Ng <adrianhoyin.ng@altera.com> 935 935 L: linux-gpio@vger.kernel.org 936 936 S: Maintained 937 937 F: drivers/gpio/gpio-altera.c
+1 -1
drivers/gpio/gpio-timberdale.c
··· 137 137 u32 ver; 138 138 int ret = 0; 139 139 140 - if (offset < 0 || offset > tgpio->gpio.ngpio) 140 + if (offset < 0 || offset >= tgpio->gpio.ngpio) 141 141 return -EINVAL; 142 142 143 143 ver = ioread32(tgpio->membase + TGPIO_VER);