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-terratec.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-terratec.c')
-rw-r--r-- | drivers/media/radio/radio-terratec.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/radio/radio-terratec.c b/drivers/media/radio/radio-terratec.c index cefa44fc5ae..0876fecc5f2 100644 --- a/drivers/media/radio/radio-terratec.c +++ b/drivers/media/radio/radio-terratec.c | |||
@@ -405,8 +405,7 @@ static int __init terratec_init(void) | |||
405 | 405 | ||
406 | spin_lock_init(&lock); | 406 | spin_lock_init(&lock); |
407 | 407 | ||
408 | if(video_register_device(&terratec_radio, VFL_TYPE_RADIO, radio_nr)==-1) | 408 | if (video_register_device(&terratec_radio, VFL_TYPE_RADIO, radio_nr) < 0) { |
409 | { | ||
410 | release_region(io,2); | 409 | release_region(io,2); |
411 | return -EINVAL; | 410 | return -EINVAL; |
412 | } | 411 | } |