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

Commit 316d7188 authored by Joe Perches's avatar Joe Perches Committed by Benjamin Herrenschmidt
Browse files

powerpc/numa: Fix decimal permissions



This should have been octal.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
parent fd120dc2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1785,7 +1785,7 @@ static const struct file_operations topology_ops = {
static int topology_update_init(void)
{
	start_topology_update();
	proc_create("powerpc/topology_updates", 644, NULL, &topology_ops);
	proc_create("powerpc/topology_updates", 0644, NULL, &topology_ops);

	return 0;
}