Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303624
b: refs/heads/master
c: e27ad0f
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Apr 25, 2012
1 parent 06ec566 commit 42dccb8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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: b3169fecb10594ac1182de904d367631a4dbdf1c
refs/heads/master: e27ad0fe9cca5e6c98c3af6d7021690b6960adf8
10 changes: 6 additions & 4 deletions trunk/drivers/input/touchscreen/usbtouchscreen.c
Original file line number Diff line number Diff line change
Expand Up @@ -1380,8 +1380,9 @@ static void usbtouch_irq(struct urb *urb)
usb_mark_last_busy(interface_to_usbdev(usbtouch->interface));
retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval)
err("%s - usb_submit_urb failed with result: %d",
__func__, retval);
dev_err(&usbtouch->interface->dev,
"%s - usb_submit_urb failed with result: %d\n",
__func__, retval);
}

static int usbtouch_open(struct input_dev *input)
Expand Down Expand Up @@ -1622,8 +1623,9 @@ static int usbtouch_probe(struct usb_interface *intf,
err = usb_submit_urb(usbtouch->irq, GFP_KERNEL);
if (err) {
usb_autopm_put_interface(intf);
err("%s - usb_submit_urb failed with result: %d",
__func__, err);
dev_err(&intf->dev,
"%s - usb_submit_urb failed with result: %d\n",
__func__, err);
goto out_unregister_input;
}
}
Expand Down

0 comments on commit 42dccb8

Please sign in to comment.