diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-07-20 16:10:24 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-20 08:24:49 -0700 |
commit | 6d14bfe77b8246a45670b7158d3a49bfe55662c7 (patch) | |
tree | 582782292e590d156a1f126b8b8bf6e0b6341b90 /drivers/lguest | |
parent | 25cccecce8e29f92eb5a0445bc97ee01ef2da379 (diff) |
Fix lguest misannotation
It's void __user *, not void * __user...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/lguest')
-rw-r--r-- | drivers/lguest/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lguest/io.c b/drivers/lguest/io.c index 06bdba2337e..c8eb7926699 100644 --- a/drivers/lguest/io.c +++ b/drivers/lguest/io.c @@ -187,7 +187,7 @@ static u32 copy_data(struct lguest *srclg, /* FIXME: This is not completely portable, since archs do different things for copy_to_user_page. */ if (copy_from_user(maddr + (dst->addr[di] + dstoff)%PAGE_SIZE, - (void *__user)src->addr[si], len) != 0) { + (void __user *)src->addr[si], len) != 0) { kill_guest(srclg, "bad address in sending DMA"); totlen = 0; break; |