[PATCH] drivers/usb/core: devio.c: Removed various errors and warnings generated by checkpatch.pl

2015-04-11 Thread Chase Metzger
Fixed several errors and warnings. Lines 29, 103, 1319, 1906 and 2408: removed unnecessary spaces or added appropriate spaces. Lines 1040 and 1591: changed dev_printk(KERN_DEBUG, ...) to dev_dbg(...). Signed-off-by: Chase Metzger chasemetzge...@gmail.com --- drivers/usb/core/devio.c | 15

Re: [PATCH] drivers/usb/core: devio.c: Removed various errors and warnings generated by checkpatch.pl

2015-04-11 Thread Hans de Goede
Hi, On 04/11/2015 09:53 AM, Chase Metzger wrote: Fixed several errors and warnings. Lines 29, 103, 1319, 1906 and 2408: removed unnecessary spaces or added appropriate spaces. Lines 1040 and 1591: changed dev_printk(KERN_DEBUG, ...) to dev_dbg(...). Signed-off-by: Chase Metzger

[PATCH] drivers/usb/core: sysfs.c: Removed a couple warnings

2015-04-11 Thread Chase Metzger
Removed a warnings(from checkpatch.pl) about sizeof not having parenthesis'. added parenthesis' around the strings being used. Signed-off-by: Chase Metzger chasemetzge...@gmail.com --- drivers/usb/core/sysfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: Repeatedly connect/disconnect events for USB devices

2015-04-11 Thread Matthias Nagel
Hi, I fiddled with my BIOS/EFI settings and found the following options related to USB: Legacy USB support: Disabled (was Enabled before) Intel xHCI Mode: Enabled (was Auto before) EHCI Hand-Off: Disabled (was not changed) Can these setting have any influence on my problem? What are the

[PATCH] drivers/usb/core: hub.c: Removed all warnings about a space between a function name and parenthesis'

2015-04-11 Thread Chase Metzger
Removed 41 warnings all about a space between a function and the parenthesis' during a function call. Signed-off-by: Chase Metzger chasemetzge...@gmail.com --- drivers/usb/core/hub.c | 82 +- 1 file changed, 41 insertions(+), 41 deletions(-) diff

Re: Mouse works with eHCI, fails with xHCI - can't set config #1, error -110

2015-04-11 Thread Alan Stern
On Sat, 11 Apr 2015, Alistair Grant wrote: Hi Alan, On Fri, Apr 10, 2015 at 7:23 PM, Alan Stern st...@rowland.harvard.edu wrote: On Fri, 10 Apr 2015, Alistair Grant wrote: On Fri, Apr 10, 2015 at 5:29 PM, Alan Stern st...@rowland.harvard.edu wrote: On Fri, 10 Apr 2015, Alistair

Re: [PATCHv2] dma: cppi41: add missing bitfields

2015-04-11 Thread Vinod Koul
On Wed, Apr 08, 2015 at 11:45:42AM -0500, Felipe Balbi wrote: Add missing directions, residue_granularity, srd_addr_widths and dst_addr_widths bitfields. Without those we will see a kernel WARN() when loading musb on am335x devices. I have applied this and will send to Linus as well --

Re: [PATCH] drivers/usb/core: hcd.c: Removed all space warnings from checkpatch.pl

2015-04-11 Thread Joe Perches
On Sat, 2015-04-11 at 03:04 -0700, Chase Metzger wrote: Removed all(except false positives, from calculations) space prohibited warnings generated by checkpatch.pl. False positives? Please describe them. The only thing I believe you elided was the use of a BitTime macro which in my opinion

Re: [PATCH] drivers/usb/core: devio.c: Removed various errors and warnings generated by checkpatch.pl

2015-04-11 Thread Joe Perches
On Sat, 2015-04-11 at 00:53 -0700, Chase Metzger wrote: Fixed several errors and warnings. [] Lines 1040 and 1591: changed dev_printk(KERN_DEBUG, ...) to dev_dbg(...). These changes hav the possibly undesired effect of removing these messages completely when DEBUG is not #defined or when

[PATCH] drivers/usb/core: hcd.c: Removed all space warnings from checkpatch.pl

2015-04-11 Thread Chase Metzger
Removed all(except false positives, from calculations) space prohibited warnings generated by checkpatch.pl. Signed-off-by: Chase Metzger chasemetzge...@gmail.com --- drivers/usb/core/hcd.c | 168 - 1 file changed, 84 insertions(+), 84

[PATCH] drivers/usb/core: hcd.c: Added parenthesis' to sizeof

2015-04-11 Thread Chase Metzger
Removed all warnings generated by checkpatch.pl about sizeof not having parenthesis'. Signed-off-by: Chase Metzger chasemetzge...@gmail.com --- drivers/usb/core/hcd.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c

[PATCH] drivers/usb/core: devio.c: Reverted previous debug print changes

2015-04-11 Thread Chase Metzger
Changed dev_dbg(...) back to dev_printk(KERN_DEBUG, ...) based on previous patches feedback. Signed-off-by: Chase Metzger chasemetzge...@gmail.com --- drivers/usb/core/devio.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/usb/core/devio.c

[PATCH] drivers/usb/core: hcd.c: Removed BitTime space warnings

2015-04-11 Thread Chase Metzger
Removed BitTime macro space warnings generated by checkpatch.pl. Signed-off-by: Chase Metzger chasemetzge...@gmail.com --- drivers/usb/core/hcd.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index 601476c7..299ff0d