瀏覽代碼

usb: endpoint: convert spaces to tabs

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>
Kris Borer 10 年之前
父節點
當前提交
3290b1b818
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/usb/core/endpoint.c

+ 1 - 1
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);
 	struct ep_device *ep = to_ep_device(dev);
 	return sprintf(buf, "%04x\n",
 	return sprintf(buf, "%04x\n",
-		        usb_endpoint_maxp(ep->desc) & 0x07ff);
+			usb_endpoint_maxp(ep->desc) & 0x07ff);
 }
 }
 static DEVICE_ATTR_RO(wMaxPacketSize);
 static DEVICE_ATTR_RO(wMaxPacketSize);