[PATCH] sysctl: frv: pm remove unnecessary insert_at_head flag
authorEric W. Biederman <[email protected]>
Wed, 14 Feb 2007 08:33:37 +0000 (00:33 -0800)
committerLinus Torvalds <[email protected]>
Wed, 14 Feb 2007 16:09:56 +0000 (08:09 -0800)
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 <[email protected]>
Acked-by: David Howells <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
arch/frv/kernel/pm.c

index 6b764666ad293869a0b744bd7ae89e8756bd58e4..c1840d6b0933e8f9132532df3f27e4bfe2006832 100644 (file)
@@ -419,7 +419,7 @@ static struct ctl_table pm_dir_table[] =
  */
 static int __init pm_init(void)
 {
-       register_sysctl_table(pm_dir_table, 1);
+       register_sysctl_table(pm_dir_table, 0);
        return 0;
 }