Commit f347596f authored by Brad Love's avatar Brad Love Committed by Mauro Carvalho Chehab

media: au0828: Fix incorrect error messages

Correcting red herring error messages.

Where appropriate, replaces au0282_dev_register with:
- au0828_analog_register
- au0828_dvb_register
Signed-off-by: default avatarBrad Love <brad@nextdimension.cc>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+samsung@kernel.org>
parent 4add7104
...@@ -628,7 +628,7 @@ static int au0828_usb_probe(struct usb_interface *interface, ...@@ -628,7 +628,7 @@ static int au0828_usb_probe(struct usb_interface *interface,
/* Analog TV */ /* Analog TV */
retval = au0828_analog_register(dev, interface); retval = au0828_analog_register(dev, interface);
if (retval) { if (retval) {
pr_err("%s() au0282_dev_register failed to register on V4L2\n", pr_err("%s() au0828_analog_register failed to register on V4L2\n",
__func__); __func__);
mutex_unlock(&dev->lock); mutex_unlock(&dev->lock);
goto done; goto done;
...@@ -637,7 +637,7 @@ static int au0828_usb_probe(struct usb_interface *interface, ...@@ -637,7 +637,7 @@ static int au0828_usb_probe(struct usb_interface *interface,
/* Digital TV */ /* Digital TV */
retval = au0828_dvb_register(dev); retval = au0828_dvb_register(dev);
if (retval) if (retval)
pr_err("%s() au0282_dev_register failed\n", pr_err("%s() au0828_dvb_register failed\n",
__func__); __func__);
/* Remote controller */ /* Remote controller */
......
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