Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: frontier: Fix quoted string split across lines

This patch fixes "quoted string split across lines warning" warning in
alphatrack.c

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>

authored by

Gulsah Kose and committed by
Peter P Waskiewicz Jr
e563e464 c0b37b70

+3 -4
+3 -4
drivers/staging/frontier/alphatrack.c
··· 235 235 236 236 if (urb->actual_length != INPUT_CMD_SIZE) { 237 237 dev_warn(&dev->intf->dev, 238 - "Urb length was %d bytes!!" 239 - "Do something intelligent\n", urb->actual_length); 238 + "Urb length was %d bytes!! Do something intelligent\n", 239 + urb->actual_length); 240 240 } else { 241 241 alphatrack_ocmd_info(&dev->intf->dev, 242 242 &(*dev->ring_buffer)[dev->ring_tail].cmd, ··· 690 690 } 691 691 if (dev->interrupt_out_endpoint == NULL) 692 692 dev_warn(&intf->dev, 693 - "Interrupt out endpoint not found" 694 - "(using control endpoint instead)\n"); 693 + "Interrupt out endpoint not found (using control endpoint instead)\n"); 695 694 696 695 dev->interrupt_in_endpoint_size = 697 696 le16_to_cpu(dev->interrupt_in_endpoint->wMaxPacketSize);