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

Pull gpio fixes from Bartosz Golaszewski:

- add a missing ACPI ID for MTL-CVF devices in gpio-usbio

- mark the gpio-wcd934x controller as "sleeping" as it uses a mutex for
locking internally

* tag 'gpio-fixes-for-v6.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
gpio: wcd934x: mark the GPIO controller as sleeping
gpio: usbio: Add ACPI device-id for MTL-CVF devices

+2 -1
+1
drivers/gpio/gpio-usbio.c
··· 29 29 { "INTC1007" }, /* MTL */ 30 30 { "INTC10B2" }, /* ARL */ 31 31 { "INTC10B5" }, /* LNL */ 32 + { "INTC10D1" }, /* MTL-CVF */ 32 33 { "INTC10E2" }, /* PTL */ 33 34 { } 34 35 };
+1 -1
drivers/gpio/gpio-wcd934x.c
··· 103 103 chip->base = -1; 104 104 chip->ngpio = WCD934X_NPINS; 105 105 chip->label = dev_name(dev); 106 - chip->can_sleep = false; 106 + chip->can_sleep = true; 107 107 108 108 return devm_gpiochip_add_data(dev, chip, data); 109 109 }