Commit 97a7b0e0 authored by Luca Ellero's avatar Luca Ellero Committed by Greg Kroah-Hartman

staging: ced1401: usb1401.c: fix code indent

Fix checkpatch warning "suspect code indent for conditional statements" in file
usb1401.c
Signed-off-by: default avatarLuca Ellero <luca.ellero@brickedbrain.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d9918484
...@@ -1256,7 +1256,8 @@ static void ced_readchar_callback(struct urb *urb) ...@@ -1256,7 +1256,8 @@ static void ced_readchar_callback(struct urb *urb)
} }
if ((ced->num_input + got) <= INBUF_SZ) if ((ced->num_input + got) <= INBUF_SZ)
/* Adjust the buffer count accordingly */ /* Adjust the buffer count */
/* accordingly */
ced->num_input += got; ced->num_input += got;
} else } else
dev_dbg(&ced->interface->dev, "%s: read ZLP\n", dev_dbg(&ced->interface->dev, "%s: read ZLP\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment