Skip to content

Commit

Permalink
USB: kbtab.c: remove err() usage
Browse files Browse the repository at this point in the history
err() was a very old USB-specific macro that I thought had
gone away.  This patch removes it from being used in the
driver and uses dev_err() instead.

CC: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed Apr 25, 2012
1 parent 3bd9597 commit 202712c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/input/tablet/kbtab.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@ static void kbtab_irq(struct urb *urb)
exit:
retval = usb_submit_urb(urb, GFP_ATOMIC);
if (retval)
err("%s - usb_submit_urb failed with result %d",
__func__, retval);
dev_err(&kbtab->usbdev->dev,
"%s - usb_submit_urb failed with result %d\n",
__func__, retval);
}

static struct usb_device_id kbtab_ids[] = {
Expand Down

0 comments on commit 202712c

Please sign in to comment.