linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Fix for the multitouch panel of the Asus T91MT
@ 2010-07-16  9:46 Stephane Chatty
  2010-07-30 12:39 ` Chase Douglas
  2010-08-18  1:37 ` Chase Douglas
  0 siblings, 2 replies; 3+ messages in thread
From: Stephane Chatty @ 2010-07-16  9:46 UTC (permalink / raw)
  To: jkosina, linux-input; +Cc: chase.douglas, chatty

Fixed bug in management of the multitouch panel of the Asus T91MT: it was
erroneously added to the ignore list instead of the black list.

Signed-off-by: Stephane Chatty <chatty@enac.fr>


diff -rupN a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
--- a/drivers/hid/hid-core.c	2010-07-05 05:22:50.000000000 +0200
+++ b/drivers/hid/hid-core.c	2010-07-16 13:38:24.266220496 +0200
@@ -1280,6 +1280,7 @@ static const struct hid_device_id hid_bl
 	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
+	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUS, USB_DEVICE_ID_ASUS_T91MT)},
 	{ HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_CANDO, USB_DEVICE_ID_CANDO_MULTI_TOUCH) },
@@ -1553,7 +1554,6 @@ static const struct hid_device_id hid_ig
 	{ HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1) },
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232) },
-	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUS, USB_DEVICE_ID_ASUS_T91MT)},
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM)},
 	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM2)},
 	{ HID_USB_DEVICE(USB_VENDOR_ID_AVERMEDIA, USB_DEVICE_ID_AVER_FM_MR800) },

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

* Re: [PATCH] Fix for the multitouch panel of the Asus T91MT
  2010-07-16  9:46 [PATCH] Fix for the multitouch panel of the Asus T91MT Stephane Chatty
@ 2010-07-30 12:39 ` Chase Douglas
  2010-08-18  1:37 ` Chase Douglas
  1 sibling, 0 replies; 3+ messages in thread
From: Chase Douglas @ 2010-07-30 12:39 UTC (permalink / raw)
  To: Stephane Chatty; +Cc: jkosina, linux-input, chatty

On Fri, 2010-07-16 at 11:46 +0200, Stephane Chatty wrote:
> Fixed bug in management of the multitouch panel of the Asus T91MT: it was
> erroneously added to the ignore list instead of the black list.
> 
> Signed-off-by: Stephane Chatty <chatty@enac.fr>

Jiri,

What's the status of this patch? It seems relatively straightforward,
and I'd like to put it into Ubuntu, but we don't typically do so until
at least the upstream maintainer applies it to his tree.

Thanks,

-- Chase


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

* Re: [PATCH] Fix for the multitouch panel of the Asus T91MT
  2010-07-16  9:46 [PATCH] Fix for the multitouch panel of the Asus T91MT Stephane Chatty
  2010-07-30 12:39 ` Chase Douglas
@ 2010-08-18  1:37 ` Chase Douglas
  1 sibling, 0 replies; 3+ messages in thread
From: Chase Douglas @ 2010-08-18  1:37 UTC (permalink / raw)
  To: jkosina; +Cc: Stephane Chatty, linux-input, chatty

On Fri, 2010-07-16 at 11:46 +0200, Stephane Chatty wrote:
> Fixed bug in management of the multitouch panel of the Asus T91MT: it was
> erroneously added to the ignore list instead of the black list.
> 
> Signed-off-by: Stephane Chatty <chatty@enac.fr>
> 
> 
> diff -rupN a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
> --- a/drivers/hid/hid-core.c	2010-07-05 05:22:50.000000000 +0200
> +++ b/drivers/hid/hid-core.c	2010-07-16 13:38:24.266220496 +0200
> @@ -1280,6 +1280,7 @@ static const struct hid_device_id hid_bl
>  	{ HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_2009_JIS) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY) },
> +	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUS, USB_DEVICE_ID_ASUS_T91MT)},
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_BTC, USB_DEVICE_ID_BTC_EMPREX_REMOTE) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_CANDO, USB_DEVICE_ID_CANDO_MULTI_TOUCH) },
> @@ -1553,7 +1554,6 @@ static const struct hid_device_id hid_ig
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1) },
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232) },
> -	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUS, USB_DEVICE_ID_ASUS_T91MT)},
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM)},
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_ASUSTEK, USB_DEVICE_ID_ASUSTEK_LCM2)},
>  	{ HID_USB_DEVICE(USB_VENDOR_ID_AVERMEDIA, USB_DEVICE_ID_AVER_FM_MR800) },

Jiri,

What's the status of this patch? (Note that this is the second time I'm
asking as I haven't received any response yet :).

Thanks,

-- Chase


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

end of thread, other threads:[~2010-08-18  1:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-16  9:46 [PATCH] Fix for the multitouch panel of the Asus T91MT Stephane Chatty
2010-07-30 12:39 ` Chase Douglas
2010-08-18  1:37 ` Chase Douglas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).