diff options
-rw-r--r-- | arch/powerpc/kernel/setup_64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/setup_64.c b/arch/powerpc/kernel/setup_64.c index ae6b67ce54e7..2fef772edfc1 100644 --- a/arch/powerpc/kernel/setup_64.c +++ b/arch/powerpc/kernel/setup_64.c | |||
@@ -380,7 +380,8 @@ void __init setup_system(void) | |||
380 | * setting up the hash table pointers. It also sets up some interrupt-mapping | 380 | * setting up the hash table pointers. It also sets up some interrupt-mapping |
381 | * related options that will be used by finish_device_tree() | 381 | * related options that will be used by finish_device_tree() |
382 | */ | 382 | */ |
383 | ppc_md.init_early(); | 383 | if (ppc_md.init_early) |
384 | ppc_md.init_early(); | ||
384 | 385 | ||
385 | /* | 386 | /* |
386 | * We can discover serial ports now since the above did setup the | 387 | * We can discover serial ports now since the above did setup the |