diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 03:33:37 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 11:09:56 -0500 |
commit | febe1c257901c766a938007ed3710e7d54618756 (patch) | |
tree | bd8f03ac30b4a05ca6a18d3482e0ddafc8d189e2 /arch/frv | |
parent | 462591b8868a18e52494e223d1a8f13311f50104 (diff) |
[PATCH] sysctl: frv: pm remove unnecessary insert_at_head flag
With unique binary numbers setting insert_at_head to insert yourself at the
head of sysctl list and thus override existing sysctl entries serves no point.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/kernel/pm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/kernel/pm.c b/arch/frv/kernel/pm.c index 6b764666ad29..c1840d6b0933 100644 --- a/arch/frv/kernel/pm.c +++ b/arch/frv/kernel/pm.c | |||
@@ -419,7 +419,7 @@ static struct ctl_table pm_dir_table[] = | |||
419 | */ | 419 | */ |
420 | static int __init pm_init(void) | 420 | static int __init pm_init(void) |
421 | { | 421 | { |
422 | register_sysctl_table(pm_dir_table, 1); | 422 | register_sysctl_table(pm_dir_table, 0); |
423 | return 0; | 423 | return 0; |
424 | } | 424 | } |
425 | 425 | ||