From: Johan Hovold Date: Sun, 6 Nov 2011 18:06:32 +0000 (+0100) Subject: USB: usb_debug: fix indentation X-Git-Tag: firefly_0821_release~3680^2~3805^2~75 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e63aa508f20283b49cfdc47018455778690800cd;p=firefly-linux-kernel-4.4.55.git USB: usb_debug: fix indentation Use tabs for indentation. Signed-off-by: Johan Hovold Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/serial/usb_debug.c b/drivers/usb/serial/usb_debug.c index 95a82148ee81..51bb509219e0 100644 --- a/drivers/usb/serial/usb_debug.c +++ b/drivers/usb/serial/usb_debug.c @@ -40,7 +40,7 @@ static struct usb_driver debug_driver = { .probe = usb_serial_probe, .disconnect = usb_serial_disconnect, .id_table = id_table, - .no_dynamic_id = 1, + .no_dynamic_id = 1, }; /* 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) struct usb_serial_port *port = urb->context; if (urb->actual_length == USB_DEBUG_BRK_SIZE && - memcmp(urb->transfer_buffer, USB_DEBUG_BRK, - USB_DEBUG_BRK_SIZE) == 0) { + memcmp(urb->transfer_buffer, USB_DEBUG_BRK, + USB_DEBUG_BRK_SIZE) == 0) { usb_serial_handle_break(port); usb_serial_generic_submit_read_urb(port, GFP_ATOMIC); return;