Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Parth Y Shah and committed by
Felipe Balbi
ad22a666 3fe314ca

+2 -2
+2 -2
drivers/usb/gadget/configfs.c
··· 1217 1217 list_move_tail(&f->list, &cfg->func_list); 1218 1218 if (f->unbind) { 1219 1219 dev_dbg(&gi->cdev.gadget->dev, 1220 - "unbind function '%s'/%p\n", 1221 - f->name, f); 1220 + "unbind function '%s'/%p\n", 1221 + f->name, f); 1222 1222 f->unbind(c, f); 1223 1223 } 1224 1224 }