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

Commit 29a9994b authored by Paolo Ciarrocchi's avatar Paolo Ciarrocchi Committed by Ingo Molnar
Browse files

x86: coding style fixes for arch/x86/kernel/cpu/centaur.c



Kills more than 150 errors/warnings

Signed-off-by: default avatarPaolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent ca5d3f14
Loading
Loading
Loading
Loading
+114 −116
Original line number Diff line number Diff line
@@ -145,13 +145,11 @@ static int __cpuinit centaur_mcr_compute(int nr, int key)
			centaur_mcr_insert(ct, floor, fspace, key);
			floor += fspace;
		}
		else if(high > low)
		{
		else if (high > low) {
			centaur_mcr_insert(ct, top, high, key);
			top += high;
		}
		else if(low > 0)
		{
		else if (low > 0) {
			base -= low;
			centaur_mcr_insert(ct, base, low, key);
		}