Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit febe1c25 authored by Eric W. Biederman's avatar Eric W. Biederman Committed by Linus Torvalds
Browse files

[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: default avatarEric W. Biederman <ebiederm@xmission.com>
Acked-by: default avatarDavid Howells <dhowells@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 462591b8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}