Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 196922
b: refs/heads/master
c: 1e1d25c
h: refs/heads/master
v: v3
  • Loading branch information
Michael Tate authored and Greg Kroah-Hartman committed May 11, 2010
1 parent 89d4657 commit cc7b3c4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8dba599d89711b4f731fcc1d135de5ffd69eb360
refs/heads/master: 1e1d25cb0d248d58ac8e586ebb23bf2f6dc55c0b
6 changes: 3 additions & 3 deletions trunk/drivers/staging/frontier/alphatrack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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;
}

Expand Down Expand Up @@ -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;
}

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/frontier/tranzport.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static void usb_tranzport_interrupt_in_callback(struct urb *urb)
if (urb->actual_length != 8) {
dev_warn(&dev->intf->dev,
"Urb length was %d bytes!!"
"Do something intelligent \n",
"Do something intelligent\n",
urb->actual_length);
} else {
dbg_info(&dev->intf->dev,
Expand Down Expand Up @@ -724,7 +724,7 @@ static ssize_t usb_tranzport_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;
}

Expand Down

0 comments on commit cc7b3c4

Please sign in to comment.