mirror of https://gitee.com/openkylin/linux.git
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
9451df0ee8
commit
7b22a8855a
|
@ -317,7 +317,8 @@ int iforce_init_device(struct iforce *iforce)
|
|||
break;
|
||||
|
||||
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;
|
||||
goto fail;
|
||||
}
|
||||
|
|
|
@ -257,7 +257,8 @@ int iforce_get_id_packet(struct iforce *iforce, char *packet)
|
|||
|
||||
status = usb_submit_urb(iforce->ctrl, GFP_ATOMIC);
|
||||
if (status) {
|
||||
err("usb_submit_urb failed %d", status);
|
||||
dev_err(&iforce->usbdev->dev,
|
||||
"usb_submit_urb failed %d\n", status);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -289,12 +290,15 @@ int iforce_get_id_packet(struct iforce *iforce, char *packet)
|
|||
return -1;
|
||||
}
|
||||
#else
|
||||
err("iforce_get_id_packet: iforce->bus = SERIO!");
|
||||
dev_err(&iforce->dev->dev,
|
||||
"iforce_get_id_packet: iforce->bus = SERIO!\n");
|
||||
#endif
|
||||
break;
|
||||
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
|
@ -100,8 +100,9 @@ static void iforce_usb_irq(struct urb *urb)
|
|||
exit:
|
||||
status = usb_submit_urb (urb, GFP_ATOMIC);
|
||||
if (status)
|
||||
err ("%s - usb_submit_urb failed with result %d",
|
||||
__func__, status);
|
||||
dev_err(&iforce->usbdev->dev,
|
||||
"%s - usb_submit_urb failed with result %d\n",
|
||||
__func__, status);
|
||||
}
|
||||
|
||||
static void iforce_usb_out(struct urb *urb)
|
||||
|
|
Loading…
Reference in New Issue