Skip to content

Commit

Permalink
drivers: usb: host: fotg210-hcd.c: Fix indentation error
Browse files Browse the repository at this point in the history
A space was given after tab key. The extra space has been removed.
This is done to maintain uniformity in the code.

Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@gmail.com>
Link: https://lore.kernel.org/r/20210311190058.yudmivcbok56itay@kewl-virtual-machine
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Shubhankar Kuranagatti authored and Greg Kroah-Hartman committed Mar 23, 2021
1 parent aaadc6a commit 4e6e851
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/usb/host/fotg210-hcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,17 +408,17 @@ static void qh_lines(struct fotg210_hcd *fotg210, struct fotg210_qh *qh,
temp = snprintf(next, size,
"\n\t%p%c%s len=%d %08x urb %p",
td, mark, ({ char *tmp;
switch ((scratch>>8)&0x03) {
case 0:
switch ((scratch>>8)&0x03) {
case 0:
tmp = "out";
break;
case 1:
case 1:
tmp = "in";
break;
case 2:
case 2:
tmp = "setup";
break;
default:
default:
tmp = "?";
break;
} tmp; }),
Expand Down

0 comments on commit 4e6e851

Please sign in to comment.