diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-08-23 05:23:55 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:36:54 -0400 |
commit | aa5e90af7d78d1711f8f4275ce3638817c0023dc (patch) | |
tree | 5faee2ec9fe16d72fba3c729c7a81354dace8fd8 /drivers/media/video/w9966.c | |
parent | f9e86b5e9d068854a2cf40f8003ef639e80cca6c (diff) |
V4L/DVB (8783): v4l: add all missing video_device release callbacks
All drivers that call video_device_register where checked to see if they
set the release callback of struct video_device. Where that callback was
missing it was added.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/w9966.c')
-rw-r--r-- | drivers/media/video/w9966.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/w9966.c b/drivers/media/video/w9966.c index c635cffb1fb8..e3580119640f 100644 --- a/drivers/media/video/w9966.c +++ b/drivers/media/video/w9966.c | |||
@@ -216,6 +216,7 @@ static const struct file_operations w9966_fops = { | |||
216 | static struct video_device w9966_template = { | 216 | static struct video_device w9966_template = { |
217 | .name = W9966_DRIVERNAME, | 217 | .name = W9966_DRIVERNAME, |
218 | .fops = &w9966_fops, | 218 | .fops = &w9966_fops, |
219 | .release = video_device_release_empty, | ||
219 | }; | 220 | }; |
220 | 221 | ||
221 | /* | 222 | /* |