projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31b92d8
)
usb: endpoint: convert spaces to tabs
author
Kris Borer
<kborer@gmail.com>
Mon, 10 Aug 2015 13:13:15 +0000
(09:13 -0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Fri, 14 Aug 2015 23:50:36 +0000
(16:50 -0700)
Fix one occurrence of the checkpatch error:
ERROR: code indent should use tabs where possible
Signed-off-by: Kris Borer <kborer@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/core/endpoint.c
patch
|
blob
|
history
diff --git
a/drivers/usb/core/endpoint.c
b/drivers/usb/core/endpoint.c
index
39a2402
..
101983b
100644
(file)
--- a/
drivers/usb/core/endpoint.c
+++ b/
drivers/usb/core/endpoint.c
@@
-51,7
+51,7
@@
static ssize_t wMaxPacketSize_show(struct device *dev,
{
struct ep_device *ep = to_ep_device(dev);
return sprintf(buf, "%04x\n",
- usb_endpoint_maxp(ep->desc) & 0x07ff);
+ usb_endpoint_maxp(ep->desc) & 0x07ff);
}
static DEVICE_ATTR_RO(wMaxPacketSize);