[Linuxwacom-devel] [PATCH input-wacom 5/6] 2.6.30: Do not report acceleromter data from Cintiq 27QHD

2018-04-06 Thread Jason Gerecke
The 2.6.38 and 3.7 kernels do not report accelerometer data from the 27QHD, likely because of the issues associated with reporting ABS_{X,Y,Z} from a pad device that isn't seperate from the pen device. The X driver should handle this (since it will place it into the pad's dedicated channel) but

[Linuxwacom-devel] [PATCH input-wacom 3/6] 2.6.30: Align INTUOSHT3 case in wacom_wac_irq with other trees

2018-04-06 Thread Jason Gerecke
Signed-off-by: Jason Gerecke --- 2.6.30/wacom_wac.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/2.6.30/wacom_wac.c b/2.6.30/wacom_wac.c index 5bf69d4..bd93cf7 100644 --- a/2.6.30/wacom_wac.c +++ b/2.6.30/wacom_wac.c @@ -1929,10 +1929,6 @@

[Linuxwacom-devel] [PATCH input-wacom 4/6] 2.6.30: Remove useless statement

2018-04-06 Thread Jason Gerecke
Just after this statement is (possibly) executed, we update the value of stylus_in_proximity to be equal to 'prox', making this explicit setting useless. Signed-off-by: Jason Gerecke --- 2.6.30/wacom_wac.c | 1 - 1 file changed, 1 deletion(-) diff --git

[Linuxwacom-devel] [PATCH input-wacom 6/6] 2.6.30: Backport report ID check for wacom_intuos_general

2018-04-06 Thread Jason Gerecke
Should have no impact other than reducing the diff between 2.6.30 and 2.6.38. Signed-off-by: Jason Gerecke --- 2.6.30/wacom_wac.c | 4 1 file changed, 4 insertions(+) diff --git a/2.6.30/wacom_wac.c b/2.6.30/wacom_wac.c index 5b75224..c5f4aa3 100644 ---

[Linuxwacom-devel] [PATCH input-wacom 1/6] 2.6.30: Check WACOM_QUIRK_BBTOUCH_LOWRES before modifying Bamboo coords

2018-04-06 Thread Jason Gerecke
Only tablets with the WACOM_QUIRK_BBTOUCH_LOWRES flag set should have their coordinates expanded. This fix was never backported from upstream to the 2.6.30 kernel; only the 2.6.38+ kernels. Signed-off-by: Jason Gerecke --- 2.6.30/wacom_wac.c | 7 +-- 1 file changed,