summaryrefslogtreecommitdiff
path: root/linux/sound/i2c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2007-10-15 13:09:17 -0200
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-10-15 13:09:17 -0200
commit11b97f9139c281b7e9d67cec412df077d1cad70b (patch)
treea284cdb8b5ab312d56f5825b30bc771488255ffd /linux/sound/i2c
parentce7d8602e81c6657ec61662bfa1433091981aeb8 (diff)
downloadmediapointer-dvb-s2-11b97f9139c281b7e9d67cec412df077d1cad70b.tar.gz
mediapointer-dvb-s2-11b97f9139c281b7e9d67cec412df077d1cad70b.tar.bz2
v4l core: remove the unused .hardware V4L1 field
From: Mauro Carvalho Chehab <mchehab@infradead.org> struct video_device used to define a .hardware field. While initialized on severl drivers, this field is never used inside V4L. However, drivers using it need to include the old V4L1 header. This seems to cause compilation troubles with some random configs. Better just to remove it from all drivers. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/sound/i2c')
-rw-r--r--linux/sound/i2c/other/tea575x-tuner.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/linux/sound/i2c/other/tea575x-tuner.c b/linux/sound/i2c/other/tea575x-tuner.c
index eccf7fa26..a8a956f8c 100644
--- a/linux/sound/i2c/other/tea575x-tuner.c
+++ b/linux/sound/i2c/other/tea575x-tuner.c
@@ -201,7 +201,6 @@ void snd_tea575x_init(struct snd_tea575x *tea)
tea->vd.owner = tea->card->module;
strcpy(tea->vd.name, tea->tea5759 ? "TEA5759 radio" : "TEA5757 radio");
tea->vd.type = VID_TYPE_TUNER;
- tea->vd.hardware = VID_HARDWARE_RTRACK; /* FIXME: assign new number */
tea->vd.release = snd_tea575x_release;
video_set_drvdata(&tea->vd, tea);
tea->vd.fops = &tea->fops;