Commit 9f9d25c9 authored by Ebru Akagunduz's avatar Ebru Akagunduz Committed by Greg Kroah-Hartman

Staging:frontier: Fix quoted string split across lines

Fix checkpatch.pl issues with quoted string split
across lines
Signed-off-by: default avatarEbru Akagunduz <ebru.akagunduz@gmail.com>
Reviewed-by: default avatarSarah Sharp <sarah.a.sharp@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 75a0ef14
...@@ -257,8 +257,7 @@ static void usb_tranzport_interrupt_in_callback(struct urb *urb) ...@@ -257,8 +257,7 @@ static void usb_tranzport_interrupt_in_callback(struct urb *urb)
if (urb->actual_length != 8) { if (urb->actual_length != 8) {
dev_warn(&dev->intf->dev, dev_warn(&dev->intf->dev,
"Urb length was %d bytes!!" "Urb length was %d bytes!! Do something intelligent\n",
"Do something intelligent\n",
urb->actual_length); urb->actual_length);
} else { } else {
dbg_info(&dev->intf->dev, dbg_info(&dev->intf->dev,
...@@ -542,8 +541,7 @@ static ssize_t usb_tranzport_read(struct file *file, char __user *buffer, ...@@ -542,8 +541,7 @@ static ssize_t usb_tranzport_read(struct file *file, char __user *buffer,
} }
dbg_info(&dev->intf->dev, dbg_info(&dev->intf->dev,
"%s: copying to userspace: " "%s: copying to userspace: %02x%02x%02x%02x%02x%02x%02x%02x\n",
"%02x%02x%02x%02x%02x%02x%02x%02x\n",
__func__, __func__,
(*dev->ring_buffer)[dev->ring_tail].cmd[0], (*dev->ring_buffer)[dev->ring_tail].cmd[0],
(*dev->ring_buffer)[dev->ring_tail].cmd[1], (*dev->ring_buffer)[dev->ring_tail].cmd[1],
...@@ -570,8 +568,7 @@ static ssize_t usb_tranzport_read(struct file *file, char __user *buffer, ...@@ -570,8 +568,7 @@ static ssize_t usb_tranzport_read(struct file *file, char __user *buffer,
* and we are the same sign, we can compress +- 7F * and we are the same sign, we can compress +- 7F
*/ */
dbg_info(&dev->intf->dev, dbg_info(&dev->intf->dev,
"%s: trying to compress: " "%s: trying to compress: %02x%02x%02x%02x%02x%02x%02x%02x\n",
"%02x%02x%02x%02x%02x%02x%02x%02x\n",
__func__, __func__,
(*dev->ring_buffer)[dev->ring_tail].cmd[0], (*dev->ring_buffer)[dev->ring_tail].cmd[0],
(*dev->ring_buffer)[dev->ring_tail].cmd[1], (*dev->ring_buffer)[dev->ring_tail].cmd[1],
...@@ -830,8 +827,7 @@ static int usb_tranzport_probe(struct usb_interface *intf, ...@@ -830,8 +827,7 @@ static int usb_tranzport_probe(struct usb_interface *intf,
} }
if (dev->interrupt_out_endpoint == NULL) if (dev->interrupt_out_endpoint == NULL)
dev_warn(&intf->dev, dev_warn(&intf->dev,
"Interrupt out endpoint not found" "Interrupt out endpoint not found (using control endpoint instead)\n");
"(using control endpoint instead)\n");
dev->interrupt_in_endpoint_size = dev->interrupt_in_endpoint_size =
le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize); le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize);
......
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