Commit 7b22a885 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

USB: iforce: 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>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9451df0e
...@@ -317,7 +317,8 @@ int iforce_init_device(struct iforce *iforce) ...@@ -317,7 +317,8 @@ int iforce_init_device(struct iforce *iforce)
break; break;
if (i == 20) { /* 5 seconds */ if (i == 20) { /* 5 seconds */
err("Timeout waiting for response from device."); dev_err(&input_dev->dev,
"Timeout waiting for response from device.\n");
error = -ENODEV; error = -ENODEV;
goto fail; goto fail;
} }
......
...@@ -257,7 +257,8 @@ int iforce_get_id_packet(struct iforce *iforce, char *packet) ...@@ -257,7 +257,8 @@ int iforce_get_id_packet(struct iforce *iforce, char *packet)
status = usb_submit_urb(iforce->ctrl, GFP_ATOMIC); status = usb_submit_urb(iforce->ctrl, GFP_ATOMIC);
if (status) { if (status) {
err("usb_submit_urb failed %d", status); dev_err(&iforce->usbdev->dev,
"usb_submit_urb failed %d\n", status);
return -1; return -1;
} }
...@@ -289,12 +290,15 @@ int iforce_get_id_packet(struct iforce *iforce, char *packet) ...@@ -289,12 +290,15 @@ int iforce_get_id_packet(struct iforce *iforce, char *packet)
return -1; return -1;
} }
#else #else
err("iforce_get_id_packet: iforce->bus = SERIO!"); dev_err(&iforce->dev->dev,
"iforce_get_id_packet: iforce->bus = SERIO!\n");
#endif #endif
break; break;
default: default:
err("iforce_get_id_packet: iforce->bus = %d", iforce->bus); dev_err(&iforce->dev->dev,
"iforce_get_id_packet: iforce->bus = %d\n",
iforce->bus);
break; break;
} }
......
...@@ -100,8 +100,9 @@ static void iforce_usb_irq(struct urb *urb) ...@@ -100,8 +100,9 @@ static void iforce_usb_irq(struct urb *urb)
exit: exit:
status = usb_submit_urb (urb, GFP_ATOMIC); status = usb_submit_urb (urb, GFP_ATOMIC);
if (status) if (status)
err ("%s - usb_submit_urb failed with result %d", dev_err(&iforce->usbdev->dev,
__func__, status); "%s - usb_submit_urb failed with result %d\n",
__func__, status);
} }
static void iforce_usb_out(struct urb *urb) static void iforce_usb_out(struct urb *urb)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment