diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 03:33:52 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 11:09:57 -0500 |
commit | 7735362ac32062725ba08ece014d669b9bede505 (patch) | |
tree | ea7fe13135dcf885c8d7f2b1bc8c6df4d5fa7c6d /drivers/char/rtc.c | |
parent | 22943364cffd404e1bba4f097ac21bc74031eba3 (diff) |
[PATCH] sysctl: remove sys_sysctl support from drivers/char/rtc.c
The real time clock driver was using the binary number reserved for cdroms in
the sysctl binary number interface, which is a no-no. So since the sysctl
binary interface is wrong remove it.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/rtc.c')
-rw-r--r-- | drivers/char/rtc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/char/rtc.c b/drivers/char/rtc.c index b6d3072dce5a..9620abb2a6dc 100644 --- a/drivers/char/rtc.c +++ b/drivers/char/rtc.c | |||
@@ -282,7 +282,7 @@ irqreturn_t rtc_interrupt(int irq, void *dev_id) | |||
282 | */ | 282 | */ |
283 | static ctl_table rtc_table[] = { | 283 | static ctl_table rtc_table[] = { |
284 | { | 284 | { |
285 | .ctl_name = 1, | 285 | .ctl_name = CTL_UNNUMBERED, |
286 | .procname = "max-user-freq", | 286 | .procname = "max-user-freq", |
287 | .data = &rtc_max_user_freq, | 287 | .data = &rtc_max_user_freq, |
288 | .maxlen = sizeof(int), | 288 | .maxlen = sizeof(int), |
@@ -294,9 +294,8 @@ static ctl_table rtc_table[] = { | |||
294 | 294 | ||
295 | static ctl_table rtc_root[] = { | 295 | static ctl_table rtc_root[] = { |
296 | { | 296 | { |
297 | .ctl_name = 1, | 297 | .ctl_name = CTL_UNNUMBERED, |
298 | .procname = "rtc", | 298 | .procname = "rtc", |
299 | .maxlen = 0, | ||
300 | .mode = 0555, | 299 | .mode = 0555, |
301 | .child = rtc_table, | 300 | .child = rtc_table, |
302 | }, | 301 | }, |
@@ -307,7 +306,6 @@ static ctl_table dev_root[] = { | |||
307 | { | 306 | { |
308 | .ctl_name = CTL_DEV, | 307 | .ctl_name = CTL_DEV, |
309 | .procname = "dev", | 308 | .procname = "dev", |
310 | .maxlen = 0, | ||
311 | .mode = 0555, | 309 | .mode = 0555, |
312 | .child = rtc_root, | 310 | .child = rtc_root, |
313 | }, | 311 | }, |