diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-08-23 04:47:41 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:36:54 -0400 |
commit | f9e86b5e9d068854a2cf40f8003ef639e80cca6c (patch) | |
tree | 03b3ba79c4e099a6dcefd490e29d6310cc1d881a /drivers | |
parent | cb353588e1946ab709be57dd8545598793acf912 (diff) |
V4L/DVB (8782): v4l2-dev: add video_device_release_empty
Add a second release function: video_device_release_empty
It can be used by drivers that have statically allocated
video_device structs.
Its use usually, but not always, indicates laziness on the
part of the driver programmer.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/v4l2-dev.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/media/video/v4l2-dev.c b/drivers/media/video/v4l2-dev.c index 66bd74b58b06..fda48a2efda6 100644 --- a/drivers/media/video/v4l2-dev.c +++ b/drivers/media/video/v4l2-dev.c | |||
@@ -73,6 +73,13 @@ void video_device_release(struct video_device *vfd) | |||
73 | } | 73 | } |
74 | EXPORT_SYMBOL(video_device_release); | 74 | EXPORT_SYMBOL(video_device_release); |
75 | 75 | ||
76 | void video_device_release_empty(struct video_device *vfd) | ||
77 | { | ||
78 | /* Do nothing */ | ||
79 | /* Only valid when the video_device struct is a static. */ | ||
80 | } | ||
81 | EXPORT_SYMBOL(video_device_release_empty); | ||
82 | |||
76 | static void video_release(struct device *cd) | 83 | static void video_release(struct device *cd) |
77 | { | 84 | { |
78 | struct video_device *vfd = container_of(cd, struct video_device, dev); | 85 | struct video_device *vfd = container_of(cd, struct video_device, dev); |