diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-13 11:25:24 +0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-13 20:58:59 +0400 |
commit | 13bcd5d0e21e3ca726965371ada8ff6c64af288f (patch) | |
tree | 4303cab73cfe0534ebe7e749bfb4aa28f8a5f777 /include/media/videobuf-core.h | |
parent | 2b8232ce512105e28453f301d1510de8363bccd1 (diff) | |
download | linux-13bcd5d0e21e3ca726965371ada8ff6c64af288f.tar.xz |
v4l: copy_to_user() is not a good method name
Breaks on any target that has copy_to_user() defined as a non-trivial
macro.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/media/videobuf-core.h')
-rw-r--r-- | include/media/videobuf-core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/videobuf-core.h b/include/media/videobuf-core.h index 9fa09fb800a1..0fa5d5912555 100644 --- a/include/media/videobuf-core.h +++ b/include/media/videobuf-core.h @@ -133,7 +133,7 @@ struct videobuf_qtype_ops { enum v4l2_memory memory); int (*sync) (struct videobuf_queue* q, struct videobuf_buffer *buf); - int (*copy_to_user) (struct videobuf_queue *q, + int (*video_copy_to_user)(struct videobuf_queue *q, char __user *data, size_t count, int nonblocking); |