diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-13 08:25:24 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-13 09:58:59 -0700 |
commit | 13bcd5d0e21e3ca726965371ada8ff6c64af288f (patch) | |
tree | 4303cab73cfe0534ebe7e749bfb4aa28f8a5f777 /drivers/media/video/videobuf-dma-sg.c | |
parent | 2b8232ce512105e28453f301d1510de8363bccd1 (diff) | |
download | linux-stable-13bcd5d0e21e3ca726965371ada8ff6c64af288f.tar.gz linux-stable-13bcd5d0e21e3ca726965371ada8ff6c64af288f.tar.bz2 linux-stable-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, }; |