mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 01:34:14 +08:00
USB: usbtouchscreen.c: remove err() usage
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> CC: Henrik Rydberg <rydberg@euromail.se> CC: Rusty Russell <rusty@rustcorp.com.au> CC: Viresh Kumar <viresh.kumar@st.com> CC: Armando Visconti <armando.visconti@st.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b3169fecb1
commit
e27ad0fe9c
@ -1380,8 +1380,9 @@ exit:
|
||||
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)
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user