diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2005-08-29 22:54:07 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-08-29 22:59:48 -0400 |
commit | 2739e8cf113ce6e931608986a28bab5a42c0acd9 (patch) | |
tree | 264d88ebd4399ec49f882560ea655f93b8bbc095 | |
parent | b74d0bd53406c23636707565d87ddaa55d315b26 (diff) |
[PATCH] Restore lparmap.s include for iSeries
A mistake rebasing the series of ppc64 head.S cleanup patches meant
the #include of lparmap.s, needed for iSeries was lost. This patch
puts it back again.
Signed-off-by: David Gibson <dwg@au1.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/ppc64/kernel/head.S | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/ppc64/kernel/head.S b/arch/ppc64/kernel/head.S index cccec4902646..d98a9986c14f 100644 --- a/arch/ppc64/kernel/head.S +++ b/arch/ppc64/kernel/head.S | |||
@@ -1269,7 +1269,16 @@ initial_stab: | |||
1269 | .= 0x7000 | 1269 | .= 0x7000 |
1270 | .globl fwnmi_data_area | 1270 | .globl fwnmi_data_area |
1271 | fwnmi_data_area: | 1271 | fwnmi_data_area: |
1272 | .space PAGE_SIZE | 1272 | |
1273 | /* iSeries does not use the FWNMI stuff, so it is safe to put | ||
1274 | * this here, even if we later allow kernels that will boot on | ||
1275 | * both pSeries and iSeries */ | ||
1276 | #ifdef CONFIG_PPC_ISERIES | ||
1277 | . = LPARMAP_PHYS | ||
1278 | #include "lparmap.s" | ||
1279 | #endif /* CONFIG_PPC_ISERIES */ | ||
1280 | |||
1281 | . = 0x8000 | ||
1273 | 1282 | ||
1274 | /* | 1283 | /* |
1275 | * On pSeries, secondary processors spin in the following code. | 1284 | * On pSeries, secondary processors spin in the following code. |