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 branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input

Pull input layer fix from Dmitry Torokhov:
"A small fixup to gpio_keys_polled driver"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: gpio_keys_polled - request GPIO pin as input.

+1 -1
+1 -1
drivers/input/keyboard/gpio_keys_polled.c
··· 246 246 * convert it to descriptor. 247 247 */ 248 248 if (!button->gpiod && gpio_is_valid(button->gpio)) { 249 - unsigned flags = 0; 249 + unsigned flags = GPIOF_IN; 250 250 251 251 if (button->active_low) 252 252 flags |= GPIOF_ACTIVE_LOW;