Commit b3169fec authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

USB: wacom_sys.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: Ping Cheng <pingc@wacom.com>
CC: Chris Bagwell <chris@cnpbagwell.com>
CC: Eduard Hasenleithner <eduard@hasenleithner.at>
CC: Jason Gerecke <killertofu@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 202712c2
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -122,7 +122,8 @@ static void wacom_sys_irq(struct urb *urb)
	usb_mark_last_busy(wacom->usbdev);
	retval = usb_submit_urb(urb, GFP_ATOMIC);
	if (retval)
		err ("%s - usb_submit_urb failed with result %d",
		dev_err(&wacom->intf->dev,
			"%s - usb_submit_urb failed with result %d\n",
			__func__, retval);
}