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

Commit ca507eaf authored by Olof Johansson's avatar Olof Johansson Committed by Paul Mackerras
Browse files

[PATCH] powerpc: remove redundant code in stab init



There's never been a hardware platform that has both pSeries/RPA LPAR
hypervisor and stab (pre-POWER4 segment management). This removes
the redundant code in stab_initalize().

Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent b6d78157
Loading
Loading
Loading
Loading
+1 −6
Original line number Original line Diff line number Diff line
@@ -288,11 +288,6 @@ void stab_initialize(unsigned long stab)
		return;
		return;
	}
	}
#endif /* CONFIG_PPC_ISERIES */
#endif /* CONFIG_PPC_ISERIES */
#ifdef CONFIG_PPC_PSERIES

	if (platform_is_lpar()) {
		plpar_hcall_norets(H_SET_ASR, stabreal);
		return;
	}
#endif
	mtspr(SPRN_ASR, stabreal);
	mtspr(SPRN_ASR, stabreal);
}
}