mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
USB: as102_usb_drv.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: Mauro Carvalho Chehab <mchehab@infradead.org> CC: Sylwester Nawrocki <snjw23@gmail.com> CC: Piotr Chmura <chmooreck@poczta.onet.pl> CC: Devin Heitmueller <dheitmueller@kernellabs.com> CC: Gianluca Gennari <gennarone@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
24c0328663
commit
8048926bb8
@ -375,7 +375,7 @@ static int as102_usb_probe(struct usb_interface *intf,
|
||||
|
||||
as102_dev = kzalloc(sizeof(struct as102_dev_t), GFP_KERNEL);
|
||||
if (as102_dev == NULL) {
|
||||
err("%s: kzalloc failed", __func__);
|
||||
dev_err(&intf->dev, "%s: kzalloc failed\n", __func__);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
@ -411,8 +411,9 @@ static int as102_usb_probe(struct usb_interface *intf,
|
||||
ret = usb_register_dev(intf, &as102_usb_class_driver);
|
||||
if (ret < 0) {
|
||||
/* something prevented us from registering this driver */
|
||||
err("%s: usb_register_dev() failed (errno = %d)",
|
||||
__func__, ret);
|
||||
dev_err(&intf->dev,
|
||||
"%s: usb_register_dev() failed (errno = %d)\n",
|
||||
__func__, ret);
|
||||
goto failed;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user