* [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes @ 2012-08-05 21:57 Marek Vasut 2012-08-05 21:57 ` [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery Marek Vasut 2012-08-15 8:33 ` [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Jiri Kosina 0 siblings, 2 replies; 9+ messages in thread From: Marek Vasut @ 2012-08-05 21:57 UTC (permalink / raw) To: linux-input-u79uwXL29TY76Z2rM5mHXA Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA, Marek Vasut, Chen Peter, Greg KH, Jiri Kosina The Freescale i.MX28 BootROM USB recovery mode implements the USB HID protocol, yet the global item tag report size is 128. Linux checks if this is 96 as of now, see [1]. This causes Linux to refuse to communicate with this device, making it impossible to use the recovery mode. This is not a standard HID device per se, but rather a software emulation implemented within the BootROM code and realized through USB OTG-capable port switched to device mode present on the device. Previous attempt to discuss this issue dates back to 2011, see [2]. There has been not much response. Also noteworthy is the [3], where there seems to be a pointing device that has issue similar to this one. The tool making use of the USB recovery mode is available at [4]. [1] http://comments.gmane.org/gmane.linux.kernel.input/22328 [2] http://www.spinics.net/lists/linux-usb/msg43463.html [3] https://bbs.archlinux.org/viewtopic.php?pid=1141340 [4] http://git.bfuser.eu/?p=marex/mxsldr.git;a=summary Signed-off-by: Marek Vasut <marex-ynQEQJNshbs@public.gmane.org> Cc: Chen Peter <B29397-KZfg59tc24xl57MIdRCFDg@public.gmane.org> Cc: Greg KH <greg-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org> Cc: Jiri Kosina <jkosina-AlSwsSmVLrQ@public.gmane.org> --- drivers/hid/hid-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index 60ea284..2b9dd76 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -374,7 +374,7 @@ static int hid_parser_global(struct hid_parser *parser, struct hid_item *item) case HID_GLOBAL_ITEM_TAG_REPORT_SIZE: parser->global.report_size = item_udata(item); - if (parser->global.report_size > 96) { + if (parser->global.report_size > 128) { hid_err(parser->device, "invalid report_size %d\n", parser->global.report_size); return -1; -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery 2012-08-05 21:57 [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Marek Vasut @ 2012-08-05 21:57 ` Marek Vasut [not found] ` <1344203835-8308-2-git-send-email-marex-ynQEQJNshbs@public.gmane.org> 2012-08-15 8:33 ` [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Jiri Kosina 1 sibling, 1 reply; 9+ messages in thread From: Marek Vasut @ 2012-08-05 21:57 UTC (permalink / raw) To: linux-input; +Cc: linux-usb, Marek Vasut, Chen Peter, Greg KH, Jiri Kosina The USB recovery mode present in i.MX28 ROM emulates USB HID. It needs this quirk to behave properly. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Chen Peter <B29397@freescale.com> Cc: Greg KH <greg@kroah.com> Cc: Jiri Kosina <jkosina@suse.cz> --- drivers/hid/hid-ids.h | 3 +++ drivers/hid/usbhid/hid-quirks.c | 1 + 2 files changed, 4 insertions(+) diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h index 1dcb76f..ab8ce9f 100644 --- a/drivers/hid/hid-ids.h +++ b/drivers/hid/hid-ids.h @@ -296,6 +296,9 @@ #define USB_VENDOR_ID_EZKEY 0x0518 #define USB_DEVICE_ID_BTC_8193 0x0002 +#define USB_VENDOR_ID_FREESCALE 0x15A2 +#define USB_DEVICE_ID_FREESCALE_MX28 0x004F + #define USB_VENDOR_ID_FRUCTEL 0x25B6 #define USB_DEVICE_ID_GAMETEL_MT_MODE 0x0002 diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c index 903eef3..6a09570 100644 --- a/drivers/hid/usbhid/hid-quirks.c +++ b/drivers/hid/usbhid/hid-quirks.c @@ -101,6 +101,7 @@ static const struct hid_blacklist { { USB_VENDOR_ID_SIGMA_MICRO, USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD, HID_QUIRK_NO_INIT_REPORTS }, { USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_MOUSEPEN_I608X, HID_QUIRK_MULTI_INPUT }, { USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X, HID_QUIRK_MULTI_INPUT }, + { USB_VENDOR_ID_FREESCALE, USB_DEVICE_ID_FREESCALE_MX28, HID_QUIRK_NOGET }, { 0, 0 } }; -- 1.7.10.4 ^ permalink raw reply related [flat|nested] 9+ messages in thread
[parent not found: <1344203835-8308-2-git-send-email-marex-ynQEQJNshbs@public.gmane.org>]
* Re: [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery [not found] ` <1344203835-8308-2-git-send-email-marex-ynQEQJNshbs@public.gmane.org> @ 2012-08-05 21:59 ` Marek Vasut [not found] ` <201208052359.26938.marex-ynQEQJNshbs@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Marek Vasut @ 2012-08-05 21:59 UTC (permalink / raw) To: linux-input-u79uwXL29TY76Z2rM5mHXA Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA, Chen Peter, Greg KH, Jiri Kosina [...] > diff --git a/drivers/hid/usbhid/hid-quirks.c > b/drivers/hid/usbhid/hid-quirks.c index 903eef3..6a09570 100644 > --- a/drivers/hid/usbhid/hid-quirks.c > +++ b/drivers/hid/usbhid/hid-quirks.c > @@ -101,6 +101,7 @@ static const struct hid_blacklist { > { USB_VENDOR_ID_SIGMA_MICRO, USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD, > HID_QUIRK_NO_INIT_REPORTS }, { USB_VENDOR_ID_KYE, > USB_DEVICE_ID_KYE_MOUSEPEN_I608X, HID_QUIRK_MULTI_INPUT }, { > USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X, HID_QUIRK_MULTI_INPUT > }, + { USB_VENDOR_ID_FREESCALE, USB_DEVICE_ID_FREESCALE_MX28, > HID_QUIRK_NOGET }, { 0, 0 } OT: btw. the comment mentioned the list should be sorted, yet it's not so for a while. Maybe a sorting patch would be favored? Best regards, Marek Vasut -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <201208052359.26938.marex-ynQEQJNshbs@public.gmane.org>]
* Re: [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery [not found] ` <201208052359.26938.marex-ynQEQJNshbs@public.gmane.org> @ 2012-08-15 8:36 ` Jiri Kosina [not found] ` <alpine.LNX.2.00.1208151036130.7026-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Jiri Kosina @ 2012-08-15 8:36 UTC (permalink / raw) To: Marek Vasut Cc: linux-input-u79uwXL29TY76Z2rM5mHXA, linux-usb-u79uwXL29TY76Z2rM5mHXA, Chen Peter, Greg KH On Sun, 5 Aug 2012, Marek Vasut wrote: > > diff --git a/drivers/hid/usbhid/hid-quirks.c > > b/drivers/hid/usbhid/hid-quirks.c index 903eef3..6a09570 100644 > > --- a/drivers/hid/usbhid/hid-quirks.c > > +++ b/drivers/hid/usbhid/hid-quirks.c > > @@ -101,6 +101,7 @@ static const struct hid_blacklist { > > { USB_VENDOR_ID_SIGMA_MICRO, USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD, > > HID_QUIRK_NO_INIT_REPORTS }, { USB_VENDOR_ID_KYE, > > USB_DEVICE_ID_KYE_MOUSEPEN_I608X, HID_QUIRK_MULTI_INPUT }, { > > USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X, HID_QUIRK_MULTI_INPUT > > }, + { USB_VENDOR_ID_FREESCALE, USB_DEVICE_ID_FREESCALE_MX28, > > HID_QUIRK_NOGET }, { 0, 0 } > > OT: btw. the comment mentioned the list should be sorted, yet it's not so for a > while. Maybe a sorting patch would be favored? I have fixed the ordering and applied. Thanks, -- Jiri Kosina SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <alpine.LNX.2.00.1208151036130.7026-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org>]
* Re: [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery [not found] ` <alpine.LNX.2.00.1208151036130.7026-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org> @ 2012-11-21 15:30 ` Marek Vasut [not found] ` <201211211630.38238.marex-ynQEQJNshbs@public.gmane.org> 0 siblings, 1 reply; 9+ messages in thread From: Marek Vasut @ 2012-11-21 15:30 UTC (permalink / raw) To: Jiri Kosina Cc: linux-input-u79uwXL29TY76Z2rM5mHXA, linux-usb-u79uwXL29TY76Z2rM5mHXA, Chen Peter, Greg KH Dear Jiri Kosina, > On Sun, 5 Aug 2012, Marek Vasut wrote: > > > diff --git a/drivers/hid/usbhid/hid-quirks.c > > > b/drivers/hid/usbhid/hid-quirks.c index 903eef3..6a09570 100644 > > > --- a/drivers/hid/usbhid/hid-quirks.c > > > +++ b/drivers/hid/usbhid/hid-quirks.c > > > @@ -101,6 +101,7 @@ static const struct hid_blacklist { > > > > > > { USB_VENDOR_ID_SIGMA_MICRO, USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD, > > > > > > HID_QUIRK_NO_INIT_REPORTS }, { USB_VENDOR_ID_KYE, > > > USB_DEVICE_ID_KYE_MOUSEPEN_I608X, HID_QUIRK_MULTI_INPUT }, { > > > USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X, > > > HID_QUIRK_MULTI_INPUT }, + { USB_VENDOR_ID_FREESCALE, > > > USB_DEVICE_ID_FREESCALE_MX28, > > > HID_QUIRK_NOGET }, { 0, 0 } > > > > OT: btw. the comment mentioned the list should be sorted, yet it's not so > > for a while. Maybe a sorting patch would be favored? > > I have fixed the ordering and applied. Thanks, Can we possibly include these changes into -stable releases too ? I'm not exactly sure how it works for linux-input, they might be applied already, if that's the case, sorry for the noise. Best regards, Marek Vasut -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
[parent not found: <201211211630.38238.marex-ynQEQJNshbs@public.gmane.org>]
* Re: [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery [not found] ` <201211211630.38238.marex-ynQEQJNshbs@public.gmane.org> @ 2012-11-22 22:46 ` Jiri Kosina 2012-11-22 23:02 ` Marek Vasut 0 siblings, 1 reply; 9+ messages in thread From: Jiri Kosina @ 2012-11-22 22:46 UTC (permalink / raw) To: Marek Vasut Cc: linux-input-u79uwXL29TY76Z2rM5mHXA, linux-usb-u79uwXL29TY76Z2rM5mHXA, Chen Peter, Greg KH On Wed, 21 Nov 2012, Marek Vasut wrote: > > > > diff --git a/drivers/hid/usbhid/hid-quirks.c > > > > b/drivers/hid/usbhid/hid-quirks.c index 903eef3..6a09570 100644 > > > > --- a/drivers/hid/usbhid/hid-quirks.c > > > > +++ b/drivers/hid/usbhid/hid-quirks.c > > > > @@ -101,6 +101,7 @@ static const struct hid_blacklist { > > > > > > > > { USB_VENDOR_ID_SIGMA_MICRO, USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD, > > > > > > > > HID_QUIRK_NO_INIT_REPORTS }, { USB_VENDOR_ID_KYE, > > > > USB_DEVICE_ID_KYE_MOUSEPEN_I608X, HID_QUIRK_MULTI_INPUT }, { > > > > USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X, > > > > HID_QUIRK_MULTI_INPUT }, + { USB_VENDOR_ID_FREESCALE, > > > > USB_DEVICE_ID_FREESCALE_MX28, > > > > HID_QUIRK_NOGET }, { 0, 0 } > > > > > > OT: btw. the comment mentioned the list should be sorted, yet it's not so > > > for a while. Maybe a sorting patch would be favored? > > > > I have fixed the ordering and applied. Thanks, > > Can we possibly include these changes into -stable releases too ? I'm not > exactly sure how it works for linux-input, they might be applied already, if > that's the case, sorry for the noise. I have just submitted it for stable, thanks for the reminder. -- Jiri Kosina SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery 2012-11-22 22:46 ` Jiri Kosina @ 2012-11-22 23:02 ` Marek Vasut 0 siblings, 0 replies; 9+ messages in thread From: Marek Vasut @ 2012-11-22 23:02 UTC (permalink / raw) To: Jiri Kosina; +Cc: linux-input, linux-usb, Chen Peter, Greg KH Dear Jiri Kosina, > On Wed, 21 Nov 2012, Marek Vasut wrote: > > > > > diff --git a/drivers/hid/usbhid/hid-quirks.c > > > > > b/drivers/hid/usbhid/hid-quirks.c index 903eef3..6a09570 100644 > > > > > --- a/drivers/hid/usbhid/hid-quirks.c > > > > > +++ b/drivers/hid/usbhid/hid-quirks.c > > > > > @@ -101,6 +101,7 @@ static const struct hid_blacklist { > > > > > > > > > > { USB_VENDOR_ID_SIGMA_MICRO, USB_DEVICE_ID_SIGMA_MICRO_KEYBOARD, > > > > > > > > > > HID_QUIRK_NO_INIT_REPORTS }, { USB_VENDOR_ID_KYE, > > > > > USB_DEVICE_ID_KYE_MOUSEPEN_I608X, HID_QUIRK_MULTI_INPUT }, { > > > > > USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_EASYPEN_M610X, > > > > > HID_QUIRK_MULTI_INPUT }, + { USB_VENDOR_ID_FREESCALE, > > > > > USB_DEVICE_ID_FREESCALE_MX28, > > > > > HID_QUIRK_NOGET }, { 0, 0 } > > > > > > > > OT: btw. the comment mentioned the list should be sorted, yet it's > > > > not so for a while. Maybe a sorting patch would be favored? > > > > > > I have fixed the ordering and applied. Thanks, > > > > Can we possibly include these changes into -stable releases too ? I'm not > > exactly sure how it works for linux-input, they might be applied already, > > if that's the case, sorry for the noise. > > I have just submitted it for stable, thanks for the reminder. Thanks! Can we push this one too? [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Best regards, Marek Vasut ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes 2012-08-05 21:57 [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Marek Vasut 2012-08-05 21:57 ` [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery Marek Vasut @ 2012-08-15 8:33 ` Jiri Kosina 2012-08-15 11:56 ` Marek Vasut 1 sibling, 1 reply; 9+ messages in thread From: Jiri Kosina @ 2012-08-15 8:33 UTC (permalink / raw) To: Marek Vasut; +Cc: linux-input, linux-usb, Chen Peter, Greg KH On Sun, 5 Aug 2012, Marek Vasut wrote: > The Freescale i.MX28 BootROM USB recovery mode implements the USB HID > protocol, yet the global item tag report size is 128. Linux checks if > this is 96 as of now, see [1]. This causes Linux to refuse to communicate > with this device, making it impossible to use the recovery mode. > > This is not a standard HID device per se, but rather a software emulation > implemented within the BootROM code and realized through USB OTG-capable > port switched to device mode present on the device. > > Previous attempt to discuss this issue dates back to 2011, see [2]. There > has been not much response. Also noteworthy is the [3], where there seems > to be a pointing device that has issue similar to this one. > > The tool making use of the USB recovery mode is available at [4]. > > [1] http://comments.gmane.org/gmane.linux.kernel.input/22328 > [2] http://www.spinics.net/lists/linux-usb/msg43463.html > [3] https://bbs.archlinux.org/viewtopic.php?pid=1141340 > [4] http://git.bfuser.eu/?p=marex/mxsldr.git;a=summary > > Signed-off-by: Marek Vasut <marex@denx.de> > Cc: Chen Peter <B29397@freescale.com> > Cc: Greg KH <greg@kroah.com> > Cc: Jiri Kosina <jkosina@suse.cz> I have not admit I don't remember where the original limit came from -- the spec doesn't mandate it as far as I can tell. I am queueing this patch now for next merge window. Thanks. > --- > drivers/hid/hid-core.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c > index 60ea284..2b9dd76 100644 > --- a/drivers/hid/hid-core.c > +++ b/drivers/hid/hid-core.c > @@ -374,7 +374,7 @@ static int hid_parser_global(struct hid_parser *parser, struct hid_item *item) > > case HID_GLOBAL_ITEM_TAG_REPORT_SIZE: > parser->global.report_size = item_udata(item); > - if (parser->global.report_size > 96) { > + if (parser->global.report_size > 128) { > hid_err(parser->device, "invalid report_size %d\n", > parser->global.report_size); > return -1; > -- > 1.7.10.4 > -- Jiri Kosina SUSE Labs ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes 2012-08-15 8:33 ` [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Jiri Kosina @ 2012-08-15 11:56 ` Marek Vasut 0 siblings, 0 replies; 9+ messages in thread From: Marek Vasut @ 2012-08-15 11:56 UTC (permalink / raw) To: Jiri Kosina; +Cc: linux-input, linux-usb, Chen Peter, Greg KH Dear Jiri Kosina, > On Sun, 5 Aug 2012, Marek Vasut wrote: > > The Freescale i.MX28 BootROM USB recovery mode implements the USB HID > > protocol, yet the global item tag report size is 128. Linux checks if > > this is 96 as of now, see [1]. This causes Linux to refuse to communicate > > with this device, making it impossible to use the recovery mode. > > > > This is not a standard HID device per se, but rather a software emulation > > implemented within the BootROM code and realized through USB OTG-capable > > port switched to device mode present on the device. > > > > Previous attempt to discuss this issue dates back to 2011, see [2]. There > > has been not much response. Also noteworthy is the [3], where there seems > > to be a pointing device that has issue similar to this one. > > > > The tool making use of the USB recovery mode is available at [4]. > > > > [1] http://comments.gmane.org/gmane.linux.kernel.input/22328 > > [2] http://www.spinics.net/lists/linux-usb/msg43463.html > > [3] https://bbs.archlinux.org/viewtopic.php?pid=1141340 > > [4] http://git.bfuser.eu/?p=marex/mxsldr.git;a=summary > > > > Signed-off-by: Marek Vasut <marex@denx.de> > > Cc: Chen Peter <B29397@freescale.com> > > Cc: Greg KH <greg@kroah.com> > > Cc: Jiri Kosina <jkosina@suse.cz> > > I have not admit I don't remember where the original limit came from -- > the spec doesn't mandate it as far as I can tell. > > I am queueing this patch now for next merge window. Thanks. [...] Thanks! Best regards, Marek Vasut ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2012-11-22 23:02 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-08-05 21:57 [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Marek Vasut 2012-08-05 21:57 ` [PATCH 2/2] input: usb: hid: Add quirk for Freescale i.MX28 ROM recovery Marek Vasut [not found] ` <1344203835-8308-2-git-send-email-marex-ynQEQJNshbs@public.gmane.org> 2012-08-05 21:59 ` Marek Vasut [not found] ` <201208052359.26938.marex-ynQEQJNshbs@public.gmane.org> 2012-08-15 8:36 ` Jiri Kosina [not found] ` <alpine.LNX.2.00.1208151036130.7026-ztGlSCb7Y1iN3ZZ/Hiejyg@public.gmane.org> 2012-11-21 15:30 ` Marek Vasut [not found] ` <201211211630.38238.marex-ynQEQJNshbs@public.gmane.org> 2012-11-22 22:46 ` Jiri Kosina 2012-11-22 23:02 ` Marek Vasut 2012-08-15 8:33 ` [PATCH 1/2] input: usb: hid: Bump maximum global item tag report size to 128 bytes Jiri Kosina 2012-08-15 11:56 ` Marek Vasut
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).