diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-07-23 18:20:50 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-07-23 18:20:50 -0300 |
commit | 419cb65a4dd8a62d256dee2795a3cad4f1771b0b (patch) | |
tree | 5af179a268c491eba1a3ae1bc0c07a61e38b4957 /linux/drivers/media/radio/radio-aimslab.c | |
parent | a779af526f7581a1b5113a2003cb7f8ac488cdac (diff) | |
download | mediapointer-dvb-s2-419cb65a4dd8a62d256dee2795a3cad4f1771b0b.tar.gz mediapointer-dvb-s2-419cb65a4dd8a62d256dee2795a3cad4f1771b0b.tar.bz2 |
Fix: compile for radio aimslab and aztech with V4L2 only
From: Mauro Carvalho Chehab <mchehab@infradead.org>
All radio devices use an obsolete mode of opening/release driver.
Since this is not V4L1 core, better to keep the method available for more
time than to rewrite open/release without a radio device to test, since the
newer method is much more complex than the previous one (although providing
support for multiple opens and multiple devices).
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/radio/radio-aimslab.c')
-rw-r--r-- | linux/drivers/media/radio/radio-aimslab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/radio/radio-aimslab.c b/linux/drivers/media/radio/radio-aimslab.c index 94aa44269..66c0ceb16 100644 --- a/linux/drivers/media/radio/radio-aimslab.c +++ b/linux/drivers/media/radio/radio-aimslab.c @@ -377,7 +377,7 @@ static struct video_device rtrack_radio= .owner = THIS_MODULE, .name = "RadioTrack radio", .type = VID_TYPE_TUNER, - .hardware = VID_HARDWARE_RTRACK, + .hardware = 0, .fops = &rtrack_fops, }; |