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

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:
Input: wacom - fix pressure in Cintiq 21UX2

+3 -1
+3 -1
drivers/input/tablet/wacom_wac.c
··· 442 442 /* general pen packet */ 443 443 if ((data[1] & 0xb8) == 0xa0) { 444 444 t = (data[6] << 2) | ((data[7] >> 6) & 3); 445 - if (features->type >= INTUOS4S && features->type <= INTUOS4L) 445 + if ((features->type >= INTUOS4S && features->type <= INTUOS4L) || 446 + features->type == WACOM_21UX2) { 446 447 t = (t << 1) | (data[1] & 1); 448 + } 447 449 input_report_abs(input, ABS_PRESSURE, t); 448 450 input_report_abs(input, ABS_TILT_X, 449 451 ((data[7] << 1) & 0x7e) | (data[8] >> 7));