mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-19 02:34:01 +08:00
V4L/DVB (10059): dsbr100: dev_err instead of dev_warn
We should use dev_err (not dev_warn) if video_register_device fails. Signed-off-by: Alexey Klimov <klimov.linux@gmail.com> Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
417b795366
commit
7e1ca8491d
@ -713,7 +713,7 @@ static int usb_dsbr100_probe(struct usb_interface *intf,
|
||||
video_set_drvdata(&radio->videodev, radio);
|
||||
retval = video_register_device(&radio->videodev, VFL_TYPE_RADIO, radio_nr);
|
||||
if (retval < 0) {
|
||||
dev_warn(&intf->dev, "Could not register video device\n");
|
||||
dev_err(&intf->dev, "couldn't register video device\n");
|
||||
kfree(radio->transfer_buffer);
|
||||
kfree(radio);
|
||||
return -EIO;
|
||||
|
Loading…
Reference in New Issue
Block a user