diff options
| author | Eric W. Biederman <ebiederm@xmission.com> | 2009-04-03 08:11:21 -0400 | 
|---|---|---|
| committer | Eric W. Biederman <ebiederm@xmission.com> | 2009-11-12 05:05:04 -0500 | 
| commit | 50469619999a0bc2ba8fa1365dc443b7aed190af (patch) | |
| tree | 7ff6bf25c65e0fe8124a75c9cb817cc3e71f5bda /arch/arm/kernel/isa.c | |
| parent | 24a065624dcdd91e8bfd0f14113feb91c7ed11ca (diff) | |
sysctl arm: Remove binary sysctl support
Now that sys_sysctl is a generic wrapper around /proc/sys  .ctl_name
and .strategy members of sysctl tables are dead code.  Remove them.
Remove a smattering of ctl_names used in sysctl paths,
and kill the ctl_names in the recently added mach-bcmring.
mach-bcmring never should have had sysctl entries with
.ctl_name set.  The binary sysctl interface has been frozen
for a long time before that code was merged, to prevent
probmes with conflicts and lack of testing.   The sysctl_check
code would have caught this if anyone had ever tested it that way.
So I have simply dropped the binary sysctl support instead of
adding another compat entry into sysctl_binary.c.  Going through
/proc/sys/reboot/warm will still work.
Cc: Leo Chen <leochen@broadcom.com>
Cc: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'arch/arm/kernel/isa.c')
| -rw-r--r-- | arch/arm/kernel/isa.c | 11 | 
1 files changed, 3 insertions, 8 deletions
| diff --git a/arch/arm/kernel/isa.c b/arch/arm/kernel/isa.c index 8ac9b8424007..738dfcc658ca 100644 --- a/arch/arm/kernel/isa.c +++ b/arch/arm/kernel/isa.c | |||
| @@ -22,47 +22,42 @@ static unsigned int isa_membase, isa_portbase, isa_portshift; | |||
| 22 | 22 | ||
| 23 | static ctl_table ctl_isa_vars[4] = { | 23 | static ctl_table ctl_isa_vars[4] = { | 
| 24 | { | 24 | { | 
| 25 | .ctl_name = BUS_ISA_MEM_BASE, | ||
| 26 | .procname = "membase", | 25 | .procname = "membase", | 
| 27 | .data = &isa_membase, | 26 | .data = &isa_membase, | 
| 28 | .maxlen = sizeof(isa_membase), | 27 | .maxlen = sizeof(isa_membase), | 
| 29 | .mode = 0444, | 28 | .mode = 0444, | 
| 30 | .proc_handler = &proc_dointvec, | 29 | .proc_handler = &proc_dointvec, | 
| 31 | }, { | 30 | }, { | 
| 32 | .ctl_name = BUS_ISA_PORT_BASE, | ||
| 33 | .procname = "portbase", | 31 | .procname = "portbase", | 
| 34 | .data = &isa_portbase, | 32 | .data = &isa_portbase, | 
| 35 | .maxlen = sizeof(isa_portbase), | 33 | .maxlen = sizeof(isa_portbase), | 
| 36 | .mode = 0444, | 34 | .mode = 0444, | 
| 37 | .proc_handler = &proc_dointvec, | 35 | .proc_handler = &proc_dointvec, | 
| 38 | }, { | 36 | }, { | 
| 39 | .ctl_name = BUS_ISA_PORT_SHIFT, | ||
| 40 | .procname = "portshift", | 37 | .procname = "portshift", | 
| 41 | .data = &isa_portshift, | 38 | .data = &isa_portshift, | 
| 42 | .maxlen = sizeof(isa_portshift), | 39 | .maxlen = sizeof(isa_portshift), | 
| 43 | .mode = 0444, | 40 | .mode = 0444, | 
| 44 | .proc_handler = &proc_dointvec, | 41 | .proc_handler = &proc_dointvec, | 
| 45 | }, {0} | 42 | }, {} | 
| 46 | }; | 43 | }; | 
| 47 | 44 | ||
| 48 | static struct ctl_table_header *isa_sysctl_header; | 45 | static struct ctl_table_header *isa_sysctl_header; | 
| 49 | 46 | ||
| 50 | static ctl_table ctl_isa[2] = { | 47 | static ctl_table ctl_isa[2] = { | 
| 51 | { | 48 | { | 
| 52 | .ctl_name = CTL_BUS_ISA, | ||
| 53 | .procname = "isa", | 49 | .procname = "isa", | 
| 54 | .mode = 0555, | 50 | .mode = 0555, | 
| 55 | .child = ctl_isa_vars, | 51 | .child = ctl_isa_vars, | 
| 56 | }, {0} | 52 | }, {} | 
| 57 | }; | 53 | }; | 
| 58 | 54 | ||
| 59 | static ctl_table ctl_bus[2] = { | 55 | static ctl_table ctl_bus[2] = { | 
| 60 | { | 56 | { | 
| 61 | .ctl_name = CTL_BUS, | ||
| 62 | .procname = "bus", | 57 | .procname = "bus", | 
| 63 | .mode = 0555, | 58 | .mode = 0555, | 
| 64 | .child = ctl_isa, | 59 | .child = ctl_isa, | 
| 65 | }, {0} | 60 | }, {} | 
| 66 | }; | 61 | }; | 
| 67 | 62 | ||
| 68 | void __init | 63 | void __init | 
