From: Parth Y Shah Date: Thu, 14 Jun 2018 06:32:46 +0000 (+0530) Subject: usb: gadget: configfs: avoid spaces for indentation X-Git-Tag: v4.19~373^2~2^2~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ad22a6663c6312825876fed25fd6d010d4b46db1;p=platform%2Fkernel%2Flinux-rpi.git 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 Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/gadget/configfs.c b/drivers/usb/gadget/configfs.c index efba66c..0251299 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); } }