diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-01 06:06:16 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2006-02-07 20:58:04 -0500 |
commit | be7ee9b2f5ef11448f79c2ff7f47eb21b7c008b4 (patch) | |
tree | f077992aa0fdef2f9aee1c095dc142c2f839e4e2 /drivers/base | |
parent | 73a09e626b9717851d3f7fd0230e401492ee326b (diff) |
[PATCH] fix __user annotations in drivers/base/memory.c
sysfs store doesn't deal with userland pointers
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/memory.c b/drivers/base/memory.c index d1a05224627..105a0d61eb1 100644 --- a/drivers/base/memory.c +++ b/drivers/base/memory.c @@ -303,7 +303,7 @@ static int block_size_init(void) */ #ifdef CONFIG_ARCH_MEMORY_PROBE static ssize_t -memory_probe_store(struct class *class, const char __user *buf, size_t count) +memory_probe_store(struct class *class, const char *buf, size_t count) { u64 phys_addr; int ret; |