diff options
author | Parth Y Shah <sparth1292@gmail.com> | 2018-06-14 09:32:46 +0300 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2018-07-26 13:49:49 +0300 |
commit | ad22a6663c6312825876fed25fd6d010d4b46db1 (patch) | |
tree | 63073ebca187b400a1f7f26765f2a6fc988fb249 | |
parent | 3fe314ca8c970aefc2d2a96dd93df6de1f4f1a4b (diff) | |
download | linux-ad22a6663c6312825876fed25fd6d010d4b46db1.tar.xz |
usb: gadget: configfs: avoid spaces for indentation
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>
-rw-r--r-- | drivers/usb/gadget/configfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/configfs.c b/drivers/usb/gadget/configfs.c index efba66ca0719..025129942894 100644 --- 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); } } |