Re: [PATCH] drivers/hid: Convert timers to use timer_setup()

2017-10-24 Thread Allen
Switch to using the new timer_setup() and from_timer() for drivers/hid/* Cc: Kees Cook Signed-off-by: Allen Pais Ignore the patch. I send out a wrong one by mistake. -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message

Re: [PATCH] usb: usbatm: Convert timers to use timer_setup()

2017-10-24 Thread Allen
c: Duncan Sands > Cc: Allen Pais > Cc: "Gustavo A. R. Silva" > Cc: accessrunner-gene...@lists.sourceforge.net > Cc: linux-usb@vger.kernel.org > Signed-off-by: Kees Cook Reviewed-by: Allen Pais > --- > drivers/usb/atm/cxacru.c | 23 ++

UAS kernel bug

2016-03-08 Thread Allen Ashley
This is from ver-linux: If some fields are empty or look unusual you may have an old version. Compare to the current minimal requirements in Documentation/Changes. Linux torr 4.4.2-smp #1 SMP Tue Feb 23 12:20:39 PST 2016 i686 Intel(R) Core(TM)2 Quad CPU @ 2.66GHz GenuineIntel GNU/Linux

UAS kernel bug

2016-03-08 Thread Allen Ashley
I submitted a bug report about the UAS module crashing earlier today (about 13 hours ago). It was suggested by greg k-h that a patch be made to uas.c: I changed: .can_queue = 65535 /* Is there a limit on the _host_ ? */ to .can_queue = MAX_CMNDS /* Is there a limit on the _host_ ? */ At t

If interested

2019-07-17 Thread Tk Allen
My name is Mr. Allen, I have a Business Proposal of Four million five hundred thousand united states dollars for you to handle with me from my bank. I will need you to assist me in executing this Business .

[PATCH] drivers/hid: Convert timers to use timer_setup()

2017-10-24 Thread Allen Pais
Switch to using the new timer_setup() and from_timer() for drivers/hid/* Cc: Kees Cook Signed-off-by: Allen Pais --- Note: This patch is only compile tested. drivers/hid/hid-appleir.c | 8 drivers/hid/hid-multitouch.c | 6 +++--- drivers/hid/hid-prodikeys.c| 7

[PATCH] drivers/hid: Convert timers to use timer_setup()

2017-10-24 Thread Allen Pais
Switch to using the new timer_setup() and from_timer() for drivers/hid/* Cc: Kees Cook Signed-off-by: Allen Pais --- Note:This patch is only compile tested. drivers/hid/hid-appleir.c | 8 drivers/hid/hid-prodikeys.c| 7 +++ drivers/hid/hid-wiimote-core.c | 6

[PATCH 1/1] net: usb: catc: use setup_timer() helper

2017-09-21 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/net/usb/catc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/net/usb/catc.c b/drivers/net/usb/catc.c index dbc9031..aeb62e1

[PATCH 0/9] use setup_timer() helper function.

2017-09-22 Thread Allen Pais
This series uses setup_timer() helper function. The series addresses the files under drivers/usb/*. Allen Pais (9): drivers: usb: hcd: use setup_timer() helper. drivers: usb: phy: omap: use setup_timer() helper. usb: gadget: udc: m66592: use setup_timer() helper. usb: gadget: udc

[PATCH 1/9] drivers: usb: hcd: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/core/hcd.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index 75ad671..67aa3d0

[PATCH 2/9] drivers: usb: phy: omap: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/phy/phy-isp1301-omap.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/usb/phy/phy-isp1301-omap.c b/drivers/usb/phy/phy

[PATCH 5/9] drivers: usb: atm: cxacru: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/atm/cxacru.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c index 5160a4a

[PATCH 4/9] usb: gadget: udc: pxa25x_udc: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/gadget/udc/pxa25x_udc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/usb/gadget/udc/pxa25x_udc.c b/drivers/usb/gadget/udc

[PATCH 6/9] usb: gadget: udc: r8a66597: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/gadget/udc/r8a66597-udc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/usb/gadget/udc/r8a66597-udc.c b/drivers/usb/gadget

[PATCH 8/9] usb: gadget: udc: dummy_hcd: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/gadget/udc/dummy_hcd.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/usb/gadget/udc/dummy_hcd.c b/drivers/usb/gadget

[PATCH 9/9] usb: gadget: udc: snps_udc_core: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/gadget/udc/snps_udc_core.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/usb/gadget/udc/snps_udc_core.c b/drivers/usb

[PATCH 7/9] drivers: usb: speedtch: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/atm/speedtch.c | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/usb/atm/speedtch.c b/drivers/usb/atm/speedtch.c index

[PATCH 3/9] usb: gadget: udc: m66592: use setup_timer() helper.

2017-09-22 Thread Allen Pais
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais --- drivers/usb/gadget/udc/m66592-udc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/usb/gadget/udc/m66592-udc.c b/drivers/usb/gadget/udc

P/Contact

2018-10-11 Thread Allen Yun
Dear Sir Please contact for detailed information of funds transfer based on your surname, Your prompt response will be highly appreciated. Kind Regards, Allen Yun B.Group manager contact id..

EHSET with hub and PCIe root hub

2019-09-10 Thread Allen Blaylock
nd the HSETT application for Windows supports testing of hubs according to the documentation.[1] Is this something there exists a module for or are either of these cases unexpected behavior for the EHSET kernel module? Allen [0] http://www.testusb.com/Hub_test.html [1] https://usb.org/sites/d

RE: EHSET with hub and PCIe root hub

2019-09-11 Thread Allen Blaylock
> >On 9/11/2019 8:27 AM, Peter Chen wrote: >> On 19-09-10 22:01:58, Allen Blaylock wrote: >>> I am trying to validate the USB on an embedded platform based on the NXP >>> i.MX7. >>> So far I have only been able to validate root ports on the board but >

RE: EHSET with hub and PCIe root hub

2019-09-12 Thread Allen Blaylock
Thank you Alan, I am still working through understanding the usbmon and this is a helpful hint. I will contact the device manufacturer and see if there is some alternative method they recommend for testing. >Most of the usbmon output shows that a device was attached to port 3 of hub 2 >and enu

RE: EHSET with hub and PCIe root hub

2019-09-12 Thread Allen Blaylock
>I should add that the USB 2.0 spec includes the following text (from section >11.24.2.13): > >Test mode of a downstream facing port can only be used in >a well defined sequence of hub states. This sequence is >defined as follows: > >1) All enabled downstream facin