[PATCH] Fix default q_len for usb_f_printer gadget driver

2020-12-28 Thread Michael R Sweet
The usb_f_printer gadget driver uses a default q_len value of *0* which prevents any IO from occurring. Moreover, once the driver is instantiated it is impossible to change the q_len value. The following patch uses a default q_len value of 10 which matches the legacy g_printer gadget driver.

Re: [PATCH] Fix default q_len for usb_f_printer gadget driver

2020-11-30 Thread Michael Sweet
Hi, I submitted this a month ago, and aside from Peter Chen's "reviewed by" response I haven't heard anything nor seen it get merged. I know you are all really busy and I don't want to be a pest - is there something else I need to do to advance this patch? Thanks! > On Oct 30, 2020, at

Re: [PATCH] Fix default q_len for usb_f_printer gadget driver

2020-10-30 Thread Peter Chen
On 20-10-30 18:34:19, Michael R Sweet wrote: > The usb_f_printer gadget driver uses a default q_len value of *0* which > prevents > any IO from occurring. Moreover, once the driver is instantiated it is > impossible to change the q_len value. > > The following patch uses a default q_len value

[PATCH] Fix default q_len for usb_f_printer gadget driver

2020-10-30 Thread Michael R Sweet
The usb_f_printer gadget driver uses a default q_len value of *0* which prevents any IO from occurring. Moreover, once the driver is instantiated it is impossible to change the q_len value. The following patch uses a default q_len value of 10 which matches the legacy g_printer gadget driver.