]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
3.5-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Sep 2012 15:57:54 +0000 (08:57 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Sep 2012 15:57:54 +0000 (08:57 -0700)
added patches:
input-wacom-rearrange-type-enum.patch

queue-3.5/input-wacom-rearrange-type-enum.patch [new file with mode: 0644]
queue-3.5/series

diff --git a/queue-3.5/input-wacom-rearrange-type-enum.patch b/queue-3.5/input-wacom-rearrange-type-enum.patch
new file mode 100644 (file)
index 0000000..e793116
--- /dev/null
@@ -0,0 +1,95 @@
+From ea2e60244573a9204c8cee9b4fb181106784c617 Mon Sep 17 00:00:00 2001
+From: Ping Cheng <pinglinux@gmail.com>
+Date: Tue, 12 Jun 2012 00:14:12 -0700
+Subject: Input: wacom - rearrange type enum
+
+From: Ping Cheng <pinglinux@gmail.com>
+
+commit ea2e60244573a9204c8cee9b4fb181106784c617 upstream.
+
+So we can simplify a few type related if statements
+
+Also fixes https://bugzilla.kernel.org/show_bug.cgi?id=46821
+
+Signed-off-by: Ping Cheng <pingc@wacom.com>
+Acked-by: Chris Bagwell <chris@cnpbagwell.com>
+Reviewed-by: Jason Gerecke <killertofu@gmail.com>
+Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/input/tablet/wacom_sys.c |   10 +++-------
+ drivers/input/tablet/wacom_wac.c |    6 ++----
+ drivers/input/tablet/wacom_wac.h |    6 +++---
+ 3 files changed, 8 insertions(+), 14 deletions(-)
+
+--- a/drivers/input/tablet/wacom_sys.c
++++ b/drivers/input/tablet/wacom_sys.c
+@@ -445,8 +445,7 @@ static int wacom_query_tablet_data(struc
+       /* ask to report Wacom data */
+       if (features->device_type == BTN_TOOL_FINGER) {
+               /* if it is an MT Tablet PC touch */
+-              if (features->type == TABLETPC2FG ||
+-                  features->type == MTSCREEN) {
++              if (features->type > TABLETPC) {
+                       do {
+                               rep_data[0] = 3;
+                               rep_data[1] = 4;
+@@ -465,7 +464,7 @@ static int wacom_query_tablet_data(struc
+                       } while ((error < 0 || rep_data[1] != 4) &&
+                                limit++ < WAC_MSG_RETRIES);
+               }
+-      } else if (features->type != TABLETPC &&
++      } else if (features->type <= BAMBOO_PT &&
+                  features->type != WIRELESS &&
+                  features->device_type == BTN_TOOL_PEN) {
+               do {
+@@ -515,10 +514,7 @@ static int wacom_retrieve_hid_descriptor
+       }
+       /* only devices that support touch need to retrieve the info */
+-      if (features->type != TABLETPC &&
+-          features->type != TABLETPC2FG &&
+-          features->type != BAMBOO_PT &&
+-          features->type != MTSCREEN) {
++      if (features->type < BAMBOO_PT) {
+               goto out;
+       }
+--- a/drivers/input/tablet/wacom_wac.c
++++ b/drivers/input/tablet/wacom_wac.c
+@@ -1324,10 +1324,8 @@ void wacom_setup_device_quirks(struct wa
+       }
+       /* these device have multiple inputs */
+-      if (features->type == TABLETPC || features->type == TABLETPC2FG ||
+-          features->type == BAMBOO_PT || features->type == WIRELESS ||
+-          (features->type >= INTUOS5S && features->type <= INTUOS5L) ||
+-          features->type == MTSCREEN)
++      if (features->type >= WIRELESS ||
++          (features->type >= INTUOS5S && features->type <= INTUOS5L))
+               features->quirks |= WACOM_QUIRK_MULTI_INPUT;
+       /* quirk for bamboo touch with 2 low res touches */
+--- a/drivers/input/tablet/wacom_wac.h
++++ b/drivers/input/tablet/wacom_wac.h
+@@ -62,8 +62,6 @@ enum {
+       PTU,
+       PL,
+       DTU,
+-      BAMBOO_PT,
+-      WIRELESS,
+       INTUOS,
+       INTUOS3S,
+       INTUOS3,
+@@ -80,7 +78,9 @@ enum {
+       CINTIQ,
+       WACOM_BEE,
+       WACOM_MO,
+-      TABLETPC,
++      WIRELESS,
++      BAMBOO_PT,
++      TABLETPC,   /* add new TPC below */
+       TABLETPC2FG,
+       MTSCREEN,
+       MAX_TYPE
index 8745398ff96dd602459dd6903eaa0f5d09017109..5704fff13f3f0eb54d1808641291ba831085ac88 100644 (file)
@@ -213,3 +213,4 @@ iwlwifi-fix-flow-handler-debug-code.patch
 gianfar-fix-phc-index-build-failure.patch
 workqueue-unbound-rebind-morphing-in-rebind_workers-should-be-atomic.patch
 input-wacom-add-support-to-cintiq-22hd.patch
+input-wacom-rearrange-type-enum.patch