All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/6] HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT
@ 2021-07-19 20:55 Jason Gerecke
  2021-07-19 20:55 ` [PATCH 2/6] HID: wacom: set initial hardware touch switch state to 'off' Jason Gerecke
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Jason Gerecke @ 2021-07-19 20:55 UTC (permalink / raw)
  To: linux-input, Jiri Kosina, Benjamin Tissoires
  Cc: Ping Cheng, Jason Gerecke, stable, Ping Cheng

Commit 670e90924bfe ("HID: wacom: support named keys on older devices")
added support for sending named events from the soft buttons on the
24HDT and 27QHDT. In the process, however, it inadvertantly disabled the
touchscreen of the 24HDT and 27QHDT by default. The
`wacom_set_shared_values` function would normally enable touch by default
but because it checks the state of the non-shared `has_mute_touch_switch`
flag and `wacom_setup_touch_input_capabilities` sets the state of the
/shared/ version, touch ends up being disabled by default.

This patch sets the non-shared flag, letting `wacom_set_shared_values`
take care of copying the value over to the shared version and setting
the default touch state to "on".

Fixes: 670e90924bfe ("HID: wacom: support named keys on older devices")
CC: stable@vger.kernel.org # 5.4+
Signed-off-by: Jason Gerecke <jason.gerecke@wacom.com>
Reviewed-by: Ping Cheng <ping.cheng@wacom.com>
---
 drivers/hid/wacom_wac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hid/wacom_wac.c b/drivers/hid/wacom_wac.c
index 81d7d12bcf34..496a000ef862 100644
--- a/drivers/hid/wacom_wac.c
+++ b/drivers/hid/wacom_wac.c
@@ -3831,7 +3831,7 @@ int wacom_setup_touch_input_capabilities(struct input_dev *input_dev,
 		    wacom_wac->shared->touch->product == 0xF6) {
 			input_dev->evbit[0] |= BIT_MASK(EV_SW);
 			__set_bit(SW_MUTE_DEVICE, input_dev->swbit);
-			wacom_wac->shared->has_mute_touch_switch = true;
+			wacom_wac->has_mute_touch_switch = true;
 		}
 		fallthrough;
 
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-07-28  9:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-19 20:55 [PATCH 1/6] HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT Jason Gerecke
2021-07-19 20:55 ` [PATCH 2/6] HID: wacom: set initial hardware touch switch state to 'off' Jason Gerecke
2021-07-19 20:55 ` [PATCH 3/6] HID: wacom: Short-circuit processing of touch when it is disabled Jason Gerecke
2021-07-19 20:55 ` [PATCH 4/6] HID: wacom: Skip processing of touches with negative slot values Jason Gerecke
2021-07-19 20:55 ` [PATCH 5/6] HID: wacom: Avoid sending empty sync events Jason Gerecke
2021-07-19 20:55 ` [PATCH 6/6] HID: wacom: Refactor touch input mute checks into a common function Jason Gerecke
2021-07-28  9:44 ` [PATCH 1/6] HID: wacom: Re-enable touch by default for Cintiq 24HDT / 27QHDT Jiri Kosina

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.