Commit e563e464 authored by Gulsah Kose's avatar Gulsah Kose Committed by Peter P Waskiewicz Jr

staging: frontier: Fix quoted string split across lines

This patch fixes "quoted string split across lines warning" warning in
alphatrack.c
Signed-off-by: default avatarGulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent c0b37b70
...@@ -235,8 +235,8 @@ static void usb_alphatrack_interrupt_in_callback(struct urb *urb) ...@@ -235,8 +235,8 @@ static void usb_alphatrack_interrupt_in_callback(struct urb *urb)
if (urb->actual_length != INPUT_CMD_SIZE) { if (urb->actual_length != INPUT_CMD_SIZE) {
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 {
alphatrack_ocmd_info(&dev->intf->dev, alphatrack_ocmd_info(&dev->intf->dev,
&(*dev->ring_buffer)[dev->ring_tail].cmd, &(*dev->ring_buffer)[dev->ring_tail].cmd,
...@@ -690,8 +690,7 @@ static int usb_alphatrack_probe(struct usb_interface *intf, ...@@ -690,8 +690,7 @@ static int usb_alphatrack_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