projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3fe314c
)
usb: gadget: configfs: avoid spaces for indentation
author
Parth Y Shah
<sparth1292@gmail.com>
Thu, 14 Jun 2018 06:32:46 +0000
(12:02 +0530)
committer
Felipe Balbi
<felipe.balbi@linux.intel.com>
Thu, 26 Jul 2018 10:49:49 +0000
(13:49 +0300)
This fixes the following checkpatch error:
ERROR: code indent should use tabs where possible
Here, spaces are replaced by a tab in 2 lines.
Signed-off-by: Parth Y Shah <sparth1292@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/gadget/configfs.c
patch
|
blob
|
history
diff --git
a/drivers/usb/gadget/configfs.c
b/drivers/usb/gadget/configfs.c
index efba66ca071967fae5358c5f94fb3482b60df952..02512994289463b43107c49871995816272db5f8 100644
(file)
--- a/
drivers/usb/gadget/configfs.c
+++ b/
drivers/usb/gadget/configfs.c
@@
-1217,8
+1217,8
@@
static void purge_configs_funcs(struct gadget_info *gi)
list_move_tail(&f->list, &cfg->func_list);
if (f->unbind) {
dev_dbg(&gi->cdev.gadget->dev,
-
"unbind function '%s'/%p\n",
-
f->name, f);
+ "unbind function '%s'/%p\n",
+ f->name, f);
f->unbind(c, f);
}
}