diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2015-04-30 01:35:57 -0500 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-04-30 22:33:16 +0200 |
commit | 3905caec3222a7ea9734be5ba202bd5b538dd609 (patch) | |
tree | bc2027788d77d65b83992a5e9dd5668efe2058c5 /src/cpu/dmp/vortex86ex | |
parent | c95ebccd9a26fec56397756b98de1955fe9da556 (diff) |
dmp/vortex86: fix missing cpu Kconfig guards
Commit e2c2bb9 (dmp/vortex86: move PLL config to cpu Kconfig)
failed to properly restrict the PLL config selection to that cpu,
resulting in the selection option being present/required for all CPUs.
Fix by guarding the Kconfig options with if/endif.
Change-Id: Ifecf291b985ab9d0d13d6b1264d3bc9a314b8546
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: http://review.coreboot.org/10038
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/cpu/dmp/vortex86ex')
-rw-r--r-- | src/cpu/dmp/vortex86ex/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cpu/dmp/vortex86ex/Kconfig b/src/cpu/dmp/vortex86ex/Kconfig index b14be7d64e..544dc09d03 100644 --- a/src/cpu/dmp/vortex86ex/Kconfig +++ b/src/cpu/dmp/vortex86ex/Kconfig @@ -19,6 +19,11 @@ config CPU_DMP_VORTEX86EX bool + +if CPU_DMP_VORTEX86EX + +config CPU_SPECIFIC_OPTIONS + def_bool y select ARCH_BOOTBLOCK_X86_32 select ARCH_VERSTAGE_X86_32 select ARCH_ROMSTAGE_X86_32 @@ -71,3 +76,5 @@ config PLL_500_375_33 bool "CPU=500Mhz/DRAM=375Mhz/PCI=33Mhz" endchoice + +endif |