diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2005-12-15 09:18:15 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-12-15 10:04:30 -0800 |
commit | d22043940eb8d660df9a94e8e439ab4d3d16edab (patch) | |
tree | 03122879d846511df7f1a2c4928b7907ae882a7b | |
parent | cd0306656c15f355e0e533cc0f08691bb98ca912 (diff) | |
download | linux-3.10-d22043940eb8d660df9a94e8e439ab4d3d16edab.tar.gz linux-3.10-d22043940eb8d660df9a94e8e439ab4d3d16edab.tar.bz2 linux-3.10-d22043940eb8d660df9a94e8e439ab4d3d16edab.zip |
[PATCH] arcfb __user annotations
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/video/arcfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/arcfb.c b/drivers/video/arcfb.c index 080db812ca4..2784f0a9d69 100644 --- a/drivers/video/arcfb.c +++ b/drivers/video/arcfb.c @@ -441,7 +441,7 @@ static int arcfb_ioctl(struct inode *inode, struct file *file, * the fb. it's inefficient for them to do anything less than 64*8 * writes since we update the lcd in each write() anyway. */ -static ssize_t arcfb_write(struct file *file, const char *buf, size_t count, +static ssize_t arcfb_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) { /* modded from epson 1355 */ |