Skip to content

Commit e63aa50

Browse files
jhovoldgregkh
authored andcommitted
USB: usb_debug: fix indentation
Use tabs for indentation. Signed-off-by: Johan Hovold <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 1ce7b93 commit e63aa50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/usb/serial/usb_debug.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ static struct usb_driver debug_driver = {
4040
.probe = usb_serial_probe,
4141
.disconnect = usb_serial_disconnect,
4242
.id_table = id_table,
43-
.no_dynamic_id = 1,
43+
.no_dynamic_id = 1,
4444
};
4545

4646
/* This HW really does not support a serial break, so one will be
@@ -59,8 +59,8 @@ static void usb_debug_read_bulk_callback(struct urb *urb)
5959
struct usb_serial_port *port = urb->context;
6060

6161
if (urb->actual_length == USB_DEBUG_BRK_SIZE &&
62-
memcmp(urb->transfer_buffer, USB_DEBUG_BRK,
63-
USB_DEBUG_BRK_SIZE) == 0) {
62+
memcmp(urb->transfer_buffer, USB_DEBUG_BRK,
63+
USB_DEBUG_BRK_SIZE) == 0) {
6464
usb_serial_handle_break(port);
6565
usb_serial_generic_submit_read_urb(port, GFP_ATOMIC);
6666
return;

0 commit comments

Comments
 (0)