summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorAlexander Viro <viro@parcelfarce.linux.theplanet.co.uk>2004-06-03 06:27:10 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-06-03 06:27:10 -0700
commit4743adaa809452fd1705f23d72fbf22f3091e223 (patch)
tree1505ca5870365577e8b566393e0dfc9a4ccebcf4 /drivers
parent2c37fa03ac935bf5f03d9ae7d7dc61ba4fda151a (diff)
[PATCH] sparse: drivers/cpufreq annotation
drivers/cpufreq annotated
Diffstat (limited to 'drivers')
-rw-r--r--drivers/cpufreq/cpufreq_userspace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/cpufreq/cpufreq_userspace.c b/drivers/cpufreq/cpufreq_userspace.c
index 666c71790626..510214470955 100644
--- a/drivers/cpufreq/cpufreq_userspace.c
+++ b/drivers/cpufreq/cpufreq_userspace.c
@@ -206,7 +206,7 @@ cpufreq_sysctl(ctl_table *table, int __user *name, int nlen,
if (oldlen != sizeof(unsigned int))
return -EINVAL;
- if (put_user(cpufreq_get(cpu), (unsigned int *)oldval) ||
+ if (put_user(cpufreq_get(cpu), (unsigned int __user *)oldval) ||
put_user(sizeof(unsigned int), oldlenp))
return -EFAULT;
}
@@ -216,7 +216,7 @@ cpufreq_sysctl(ctl_table *table, int __user *name, int nlen,
if (newlen != sizeof(unsigned int))
return -EINVAL;
- if (get_user(freq, (unsigned int *)newval))
+ if (get_user(freq, (unsigned int __user *)newval))
return -EFAULT;
cpufreq_set(freq, cpu);