aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/frontier/alphatrack.c
diff options
context:
space:
mode:
authorMichael Tate <michael.tate@wanadoo.fr>2010-03-07 18:19:39 +0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-05-11 11:35:33 -0700
commit1e1d25cb0d248d58ac8e586ebb23bf2f6dc55c0b (patch)
tree0056effc1cb319b7b67782673c03c472103a7896 /drivers/staging/frontier/alphatrack.c
parentstaging: rtl8192su: cleanup of r819xU_cmdpkt.c, r819xU_cmdpkt.c (diff)
downloadlinux-dev-1e1d25cb0d248d58ac8e586ebb23bf2f6dc55c0b.tar.xz
linux-dev-1e1d25cb0d248d58ac8e586ebb23bf2f6dc55c0b.zip
staging: frontier: Fix coding style issues in 2 files.
This patch removes unecessary whitespace before quoted newlines in two files. One warning in each file remains unresolved. Signed-off-by: Michael Tate <michael.tate@wanadoo.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/frontier/alphatrack.c')
-rw-r--r--drivers/staging/frontier/alphatrack.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/frontier/alphatrack.c b/drivers/staging/frontier/alphatrack.c
index a50a21518a8e..ce4d663a3e54 100644
--- a/drivers/staging/frontier/alphatrack.c
+++ b/drivers/staging/frontier/alphatrack.c
@@ -238,7 +238,7 @@ static void usb_alphatrack_interrupt_in_callback(struct urb *urb)
if (urb->actual_length != INPUT_CMD_SIZE) {
dev_warn(&dev->intf->dev,
"Urb length was %d bytes!!"
- "Do something intelligent \n", urb->actual_length);
+ "Do something intelligent\n", urb->actual_length);
} else {
alphatrack_ocmd_info(&dev->intf->dev,
&(*dev->ring_buffer)[dev->ring_tail].cmd,
@@ -599,7 +599,7 @@ static ssize_t usb_alphatrack_write(struct file *file,
}
if (dev->interrupt_out_endpoint == NULL) {
- err("Endpoint should not be be null! \n");
+ err("Endpoint should not be be null!\n");
goto unlock_exit;
}
@@ -771,7 +771,7 @@ static int usb_alphatrack_probe(struct usb_interface *intf,
kmalloc(sizeof(struct alphatrack_ocmd) * true_size, GFP_KERNEL);
if (!dev->write_buffer) {
- dev_err(&intf->dev, "Couldn't allocate write_buffer \n");
+ dev_err(&intf->dev, "Couldn't allocate write_buffer\n");
goto error;
}