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 fixes from Dmitry Torokhov:
"Just a couple of fixups to the sparse-keymap module and the Microchip
AR1021 touchscreen driver"

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: sparse-keymap - send sync event for KE_SW/KE_VSW
Input: ar1021_i2c - set INPUT_PROP_DIRECT

+2
+1
drivers/input/sparse-keymap.c
··· 255 255 256 256 case KE_VSW: 257 257 input_report_switch(dev, ke->sw.code, value); 258 + input_sync(dev); 258 259 break; 259 260 } 260 261 }
+1
drivers/input/touchscreen/ar1021_i2c.c
··· 117 117 input->open = ar1021_i2c_open; 118 118 input->close = ar1021_i2c_close; 119 119 120 + __set_bit(INPUT_PROP_DIRECT, input->propbit); 120 121 input_set_capability(input, EV_KEY, BTN_TOUCH); 121 122 input_set_abs_params(input, ABS_X, 0, AR1021_MAX_X, 0, 0); 122 123 input_set_abs_params(input, ABS_Y, 0, AR1021_MAX_Y, 0, 0);