summaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorAndrew Morton2006-08-15 07:43:19 +0200
committerGreg Kroah-Hartman2006-09-26 06:08:39 +0200
commit8a6914ab7c95d471c23b42268aa8e1f55b3d2fdb (patch)
treea92155e860df4bd9d25e63958c3f3ffa59935cb9 /include/media
parentadd CONFIG_ENABLE_MUST_CHECK (diff)
downloadkernel-qcow2-linux-8a6914ab7c95d471c23b42268aa8e1f55b3d2fdb.tar.gz
kernel-qcow2-linux-8a6914ab7c95d471c23b42268aa8e1f55b3d2fdb.tar.xz
kernel-qcow2-linux-8a6914ab7c95d471c23b42268aa8e1f55b3d2fdb.zip
v4l-dev2: handle __must_check
We get hundreds of these: include/media/v4l2-dev.h:348: warning: ignoring return value of 'class_device_create_file', declared with attribute warn_unused_result Handle it, and propagate the __must_check back a level. Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/v4l2-dev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h
index 810462f8a374..bb495b7f4680 100644
--- a/include/media/v4l2-dev.h
+++ b/include/media/v4l2-dev.h
@@ -341,7 +341,7 @@ extern int video_usercopy(struct inode *inode, struct file *file,
extern struct video_device* video_devdata(struct file*);
#define to_video_device(cd) container_of(cd, struct video_device, class_dev)
-static inline int
+static inline int __must_check
video_device_create_file(struct video_device *vfd,
struct class_device_attribute *attr)
{