diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-07-22 16:25:35 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-26 12:55:08 -0300 |
commit | 322e4095c9261d4cf0326f10d8e398d05e66521c (patch) | |
tree | e22cdb824f41131564558251d99ffb2107d85c97 | |
parent | 9c39d7eafa366b807067697f7fc5b14d8b865179 (diff) | |
download | linux-3.10-322e4095c9261d4cf0326f10d8e398d05e66521c.tar.gz linux-3.10-322e4095c9261d4cf0326f10d8e398d05e66521c.tar.bz2 linux-3.10-322e4095c9261d4cf0326f10d8e398d05e66521c.zip |
V4L/DVB (8484): videodev: missed two more usages of the removed 'owner' field.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | drivers/media/video/arv.c | 1 | ||||
-rw-r--r-- | sound/i2c/other/tea575x-tuner.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/media/video/arv.c b/drivers/media/video/arv.c index 8c7d1958856..56ebfd5ef6f 100644 --- a/drivers/media/video/arv.c +++ b/drivers/media/video/arv.c @@ -754,7 +754,6 @@ static const struct file_operations ar_fops = { }; static struct video_device ar_template = { - .owner = THIS_MODULE, .name = "Colour AR VGA", .type = VID_TYPE_CAPTURE, .fops = &ar_fops, diff --git a/sound/i2c/other/tea575x-tuner.c b/sound/i2c/other/tea575x-tuner.c index 87e3aefeddc..187c9527725 100644 --- a/sound/i2c/other/tea575x-tuner.c +++ b/sound/i2c/other/tea575x-tuner.c @@ -189,7 +189,6 @@ void snd_tea575x_init(struct snd_tea575x *tea) } memset(&tea->vd, 0, sizeof(tea->vd)); - tea->vd.owner = tea->card->module; strcpy(tea->vd.name, tea->tea5759 ? "TEA5759 radio" : "TEA5757 radio"); tea->vd.type = VID_TYPE_TUNER; tea->vd.release = snd_tea575x_release; |