diff options
-rw-r--r-- | arch/ppc64/kernel/setup.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/ppc64/kernel/setup.c b/arch/ppc64/kernel/setup.c index 5ac48bd64891..ca8acf671e46 100644 --- a/arch/ppc64/kernel/setup.c +++ b/arch/ppc64/kernel/setup.c | |||
@@ -58,6 +58,7 @@ | |||
58 | #include <asm/mmu.h> | 58 | #include <asm/mmu.h> |
59 | #include <asm/lmb.h> | 59 | #include <asm/lmb.h> |
60 | #include <asm/iSeries/ItLpNaca.h> | 60 | #include <asm/iSeries/ItLpNaca.h> |
61 | #include <asm/firmware.h> | ||
61 | 62 | ||
62 | #ifdef DEBUG | 63 | #ifdef DEBUG |
63 | #define DBG(fmt...) udbg_printf(fmt) | 64 | #define DBG(fmt...) udbg_printf(fmt) |
@@ -401,7 +402,8 @@ void __init early_setup(unsigned long dt_ptr) | |||
401 | /* | 402 | /* |
402 | * Initialize stab / SLB management | 403 | * Initialize stab / SLB management |
403 | */ | 404 | */ |
404 | stab_initialize(lpaca->stab_real); | 405 | if (!firmware_has_feature(FW_FEATURE_ISERIES)) |
406 | stab_initialize(lpaca->stab_real); | ||
405 | 407 | ||
406 | /* | 408 | /* |
407 | * Initialize the MMU Hash table and create the linear mapping | 409 | * Initialize the MMU Hash table and create the linear mapping |