diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-13 09:25:24 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-13 18:58:59 +0200 |
commit | 13bcd5d0e21e3ca726965371ada8ff6c64af288f (patch) | |
tree | 4303cab73cfe0534ebe7e749bfb4aa28f8a5f777 /drivers/media/video/videobuf-dma-sg.c | |
parent | minimal build fixes for uml (fallout from x86 merge) (diff) | |
download | linux-13bcd5d0e21e3ca726965371ada8ff6c64af288f.tar.xz linux-13bcd5d0e21e3ca726965371ada8ff6c64af288f.zip |
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 'drivers/media/video/videobuf-dma-sg.c')
-rw-r--r-- | drivers/media/video/videobuf-dma-sg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/videobuf-dma-sg.c b/drivers/media/video/videobuf-dma-sg.c index 8bb7fdd306d6..3eb6123227b2 100644 --- a/drivers/media/video/videobuf-dma-sg.c +++ b/drivers/media/video/videobuf-dma-sg.c @@ -670,7 +670,7 @@ static struct videobuf_qtype_ops pci_ops = { .sync = __videobuf_sync, .mmap_free = __videobuf_mmap_free, .mmap_mapper = __videobuf_mmap_mapper, - .copy_to_user = __videobuf_copy_to_user, + .video_copy_to_user = __videobuf_copy_to_user, .copy_stream = __videobuf_copy_stream, }; |