mirror of https://gitee.com/openkylin/linux.git
sysctl powerpc: Remove dead 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. Cc: Paul Mackerras <paulus@samba.org> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
This commit is contained in:
parent
d00faf81af
commit
26ea513558
|
@ -110,7 +110,6 @@ int powersave_nap;
|
|||
*/
|
||||
static ctl_table powersave_nap_ctl_table[]={
|
||||
{
|
||||
.ctl_name = KERN_PPC_POWERSAVE_NAP,
|
||||
.procname = "powersave-nap",
|
||||
.data = &powersave_nap,
|
||||
.maxlen = sizeof(int),
|
||||
|
@ -121,7 +120,6 @@ static ctl_table powersave_nap_ctl_table[]={
|
|||
};
|
||||
static ctl_table powersave_nap_sysctl_root[] = {
|
||||
{
|
||||
.ctl_name = CTL_KERN,
|
||||
.procname = "kernel",
|
||||
.mode = 0555,
|
||||
.child = powersave_nap_ctl_table,
|
||||
|
|
Loading…
Reference in New Issue