Commit bc802a27 authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman

staging: frontier: fix some indenting

There were a couple lines which were not indented far enough and it was
confusing.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 50b14a9e
...@@ -271,8 +271,8 @@ static void usb_tranzport_interrupt_in_callback(struct urb *urb) ...@@ -271,8 +271,8 @@ static void usb_tranzport_interrupt_in_callback(struct urb *urb)
dev->interrupt_in_buffer[6], dev->interrupt_in_buffer[6],
dev->interrupt_in_buffer[7]); dev->interrupt_in_buffer[7]);
#if SUPPRESS_EXTRA_OFFLINE_EVENTS #if SUPPRESS_EXTRA_OFFLINE_EVENTS
if (dev->offline == 2 && dev->interrupt_in_buffer[1] == 0xff) if (dev->offline == 2 && dev->interrupt_in_buffer[1] == 0xff)
goto resubmit; goto resubmit;
if (dev->offline == 1 && dev->interrupt_in_buffer[1] == 0xff) { if (dev->offline == 1 && dev->interrupt_in_buffer[1] == 0xff) {
dev->offline = 2; dev->offline = 2;
goto resubmit; goto resubmit;
...@@ -285,8 +285,8 @@ static void usb_tranzport_interrupt_in_callback(struct urb *urb) ...@@ -285,8 +285,8 @@ static void usb_tranzport_interrupt_in_callback(struct urb *urb)
dev->offline = 1; dev->offline = 1;
#endif /* SUPPRESS_EXTRA_OFFLINE_EVENTS */ #endif /* SUPPRESS_EXTRA_OFFLINE_EVENTS */
dbg_info(&dev->intf->dev, "%s: head, tail are %x, %x\n", dbg_info(&dev->intf->dev, "%s: head, tail are %x, %x\n",
__func__, dev->ring_head, dev->ring_tail); __func__, dev->ring_head, dev->ring_tail);
next_ring_head = (dev->ring_head + 1) % ring_buffer_size; next_ring_head = (dev->ring_head + 1) % ring_buffer_size;
......
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