USB: powermate.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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
4efeca581b
Коммит
2385f3c3c7
|
@ -110,8 +110,9 @@ static void powermate_irq(struct urb *urb)
|
||||||
exit:
|
exit:
|
||||||
retval = usb_submit_urb (urb, GFP_ATOMIC);
|
retval = usb_submit_urb (urb, GFP_ATOMIC);
|
||||||
if (retval)
|
if (retval)
|
||||||
err ("%s - usb_submit_urb failed with result %d",
|
dev_err(&pm->udev->dev,
|
||||||
__func__, retval);
|
"%s - usb_submit_urb failed with result: %d\n",
|
||||||
|
__func__, retval);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Decide if we need to issue a control message and do so. Must be called with pm->lock taken */
|
/* Decide if we need to issue a control message and do so. Must be called with pm->lock taken */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче