diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-09-03 16:11:58 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-09-03 17:37:16 -0400 |
commit | cba99ae81901fe61ac4b0d65c697474af29dc4ea (patch) | |
tree | 5dd22d5a4d02d92fe92bacd95e7e40b7149dfa8d /drivers/media/radio/radio-si470x.c | |
parent | 6c9de52884aeafb05a935467c3a2c05a2d445ab7 (diff) |
V4L/DVB (8778): radio: fix incorrect video_register_device result check
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio/radio-si470x.c')
-rw-r--r-- | drivers/media/radio/radio-si470x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-si470x.c b/drivers/media/radio/radio-si470x.c index a4984ff87c9c..16c7ef20265c 100644 --- a/drivers/media/radio/radio-si470x.c +++ b/drivers/media/radio/radio-si470x.c | |||
@@ -1694,8 +1694,8 @@ static int si470x_usb_driver_probe(struct usb_interface *intf, | |||
1694 | INIT_DELAYED_WORK(&radio->work, si470x_work); | 1694 | INIT_DELAYED_WORK(&radio->work, si470x_work); |
1695 | 1695 | ||
1696 | /* register video device */ | 1696 | /* register video device */ |
1697 | if (video_register_device(radio->videodev, VFL_TYPE_RADIO, radio_nr)) { | 1697 | retval = video_register_device(radio->videodev, VFL_TYPE_RADIO, radio_nr); |
1698 | retval = -EIO; | 1698 | if (retval) { |
1699 | printk(KERN_WARNING DRIVER_NAME | 1699 | printk(KERN_WARNING DRIVER_NAME |
1700 | ": Could not register video device\n"); | 1700 | ": Could not register video device\n"); |
1701 | goto err_all; | 1701 | goto err_all; |