aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Cochran2011-02-01 07:50:58 -0600
committerThomas Gleixner2011-02-02 08:28:11 -0600
commit1e6d767924c74929c0cfe839ae8f37bcee9e544e (patch)
tree4ace06971e2b3519e556bea2f7e3e999e860eedd /security/security.c
parent7cf37e87dd2cfa17a64f28ea7f31eed4525f79e4 (diff)
downloadam43-linux-kernel-1e6d767924c74929c0cfe839ae8f37bcee9e544e.tar.gz
am43-linux-kernel-1e6d767924c74929c0cfe839ae8f37bcee9e544e.tar.xz
am43-linux-kernel-1e6d767924c74929c0cfe839ae8f37bcee9e544e.zip
time: Correct the *settime* parameters
Both settimeofday() and clock_settime() promise with a 'const' attribute not to alter the arguments passed in. This patch adds the missing 'const' attribute into the various kernel functions implementing these calls. Signed-off-by: Richard Cochran <richard.cochran@omicron.at> Acked-by: John Stultz <johnstul@us.ibm.com> LKML-Reference: <20110201134417.545698637@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'security/security.c')
-rw-r--r--security/security.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/security.c b/security/security.c
index 739e40362f4..b995428f1c9 100644
--- a/security/security.c
+++ b/security/security.c
@@ -202,7 +202,7 @@ int security_syslog(int type)
202 return security_ops->syslog(type); 202 return security_ops->syslog(type);
203} 203}
204 204
205int security_settime(struct timespec *ts, struct timezone *tz) 205int security_settime(const struct timespec *ts, const struct timezone *tz)
206{ 206{
207 return security_ops->settime(ts, tz); 207 return security_ops->settime(ts, tz);
208} 208}