1
0
Fork 0

[PATCH] powerpc: always init nvram on 64-bit powermac

Currently there is no Kconfig symbol to indicate that we want nvram
support on 64-bit kernels; it's assumed we always want it, so make
the powermac setup code always initialize the pmac nvram code if
64-bit.

Signed-off-by: Paul Mackerras <paulus@samba.org>
hifive-unleashed-5.1
David Woodhouse 2005-11-02 16:54:46 +00:00 committed by Paul Mackerras
parent 9122ee33c6
commit 91c33d28cd
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ void __init pmac_setup_arch(void)
find_via_pmu();
smu_init();
#ifdef CONFIG_NVRAM
#if defined(CONFIG_NVRAM) || defined(CONFIG_PPC64)
pmac_nvram_init();
#endif