OSDN Git Service

usb: gadget: configfs: avoid spaces for indentation
authorParth Y Shah <sparth1292@gmail.com>
Thu, 14 Jun 2018 06:32:46 +0000 (12:02 +0530)
committerFelipe 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

index efba66c..0251299 100644 (file)
@@ -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);
                        }
                }