mirror of https://gitee.com/openkylin/linux.git
USB: usb_wwan.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: Rusty Russell <rusty@rustcorp.com.au> CC: Alan Stern <stern@rowland.harvard.edu> CC: Mauro Carvalho Chehab <mchehab@redhat.com> CC: "Rafael J. Wysocki" <rjw@sisk.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
461863df3c
commit
3a1c2a8220
|
@ -725,8 +725,8 @@ int usb_wwan_resume(struct usb_serial *serial)
|
|||
err = usb_submit_urb(port->interrupt_in_urb, GFP_NOIO);
|
||||
dbg("Submitted interrupt URB for port %d (result %d)", i, err);
|
||||
if (err < 0) {
|
||||
err("%s: Error %d for interrupt URB of port%d",
|
||||
__func__, err, i);
|
||||
dev_err(&port->dev, "%s: Error %d for interrupt URB\n",
|
||||
__func__, err);
|
||||
goto err_out;
|
||||
}
|
||||
}
|
||||
|
@ -747,8 +747,8 @@ int usb_wwan_resume(struct usb_serial *serial)
|
|||
urb = portdata->in_urbs[j];
|
||||
err = usb_submit_urb(urb, GFP_ATOMIC);
|
||||
if (err < 0) {
|
||||
err("%s: Error %d for bulk URB %d",
|
||||
__func__, err, i);
|
||||
dev_err(&port->dev, "%s: Error %d for bulk URB %d\n",
|
||||
__func__, err, i);
|
||||
spin_unlock_irq(&intfdata->susp_lock);
|
||||
goto err_out;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue