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

Commit 69ed3324 authored by Anton Blanchard's avatar Anton Blanchard Committed by Paul Mackerras
Browse files

[PATCH] powerpc: Fix some initcall return values



Non zero initcalls (except for -ENODEV) have started warning at boot.
Fix smt_setup and init_ras_IRQ.

Signed-off-by: default avatarAnton Blanchard <anton@samba.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 9fe901d1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -65,11 +65,11 @@ static int __init smt_setup(void)
	unsigned int cpu;

	if (!cpu_has_feature(CPU_FTR_SMT))
		return 1;
		return -ENODEV;

	options = find_path_device("/options");
	if (!options)
		return 1;
		return -ENODEV;

	val = (unsigned int *)get_property(options, "ibm,smt-snooze-delay",
					   NULL);
@@ -78,7 +78,7 @@ static int __init smt_setup(void)
			per_cpu(smt_snooze_delay, cpu) = *val;
	}

	return 1;
	return 0;
}
__initcall(smt_setup);

+1 −1
Original line number Diff line number Diff line
@@ -132,7 +132,7 @@ static int __init init_ras_IRQ(void)
		of_node_put(np);
	}

	return 1;
	return 0;
}
__initcall(init_ras_IRQ);