On Fri, Jan 10, 2014 at 01:36:17AM +0300, Sergei Shtylyov wrote:
> Hello.
> 
> On 01/08/2014 07:13 PM, oli...@neukum.org wrote:
> 
> >From: Oliver Neukum <oneu...@suse.de>
> 
> >This changes debug messages and warnings in xhci-ring.c
> >to be on a single line so grep can find them. grep must
> >have precedence over the 80 column limit.
> 
>    In the eyes of checkpatch.pl, it has been having precedence for
> quite a while already, even so that it found some of your line
> breaks premature. :-)

The patch is now applied to my for-usb-next-3.14 branch, and will be
sent out for inclusion in 3.15 after 3.14-rc1 is out.  I've fixed the
checkpatch.pl errors that Sergei commented on.

https://git.kernel.org/cgit/linux/kernel/git/sarah/xhci.git/commit/?h=for-usb-next-3.14&id=5f352c30efef644f17603150ed1e38d90bfdba6d

Sarah Sharp

> >Signed-off-by: Oliver Neukum <oneu...@suse.de>
> 
> >---
> >  drivers/usb/host/xhci-ring.c | 21 ++++++++-------------
> >  1 file changed, 8 insertions(+), 13 deletions(-)
> >
> >diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
> >index 09b2b55..34dce53 100644
> >--- a/drivers/usb/host/xhci-ring.c
> >+++ b/drivers/usb/host/xhci-ring.c
> [...]
> >@@ -1113,13 +1110,12 @@ static void xhci_handle_cmd_set_deq(struct xhci_hcd 
> >*xhci, int slot_id,
> >                                     slot_state, ep_state);
> >                     break;
> >             case COMP_EBADSLT:
> >-                    xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because 
> >"
> >-                                    "slot %u was not enabled.\n", slot_id);
> >+                    xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because 
> >slot "
> >+                                    "%u was not enabled.\n", slot_id);
> >                     break;
> >             default:
> >-                    xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown "
> >-                                    "completion code of %u.\n",
> >-                              cmd_comp_code);
> >+                    xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown 
> >completion code of "
> >+                                    "%u.\n", cmd_comp_code);
> >                     break;
> >             }
> >             /* OK what do we do now?  The endpoint state is hosed, and we
> 
> $ scripts/checkpatch.pl ~/patches/xhci-make-warnings-greppable.patch
> WARNING: quoted string split across lines
> #48: FILE: drivers/usb/host/xhci-ring.c:1114:
> +                     xhci_warn(xhci, "WARN Set TR Deq Ptr cmd failed because 
> slot "
> +                                     "%u was not enabled.\n", slot_id);
> 
> WARNING: quoted string split across lines
> #55: FILE: drivers/usb/host/xhci-ring.c:1118:
> +                     xhci_warn(xhci, "WARN Set TR Deq Ptr cmd with unknown 
> completion code of "
> +                                     "%u.\n", cmd_comp_code);
> 
> total: 0 errors, 2 warnings, 49 lines checked
> 
> /home/headless/patches/xhci-make-warnings-greppable.patch has style
> problems, please review.
> 
> If any of these errors are false positives, please report
> them to the maintainer, see CHECKPATCH in MAINTAINERS.
> 
> PS: Sarah, sorry for speaking up on xHCI patches again but I was
> sure the patch won't pass checkpatch.pl, so decided to report
> this...
> 
> WBR, Sergei
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to