summaryrefslogtreecommitdiff
path: root/src/cpu/amd/agesa/family14/model_14_init.c
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-11-21 12:34:00 +1100
committerEdward O'Callaghan <eocallaghan@alterapraxis.com>2014-11-21 14:07:53 +0100
commit3b8bfeba437f85fbd428c1b76cfd417d55b9920f (patch)
tree12d2992dc9b4e36870cde296f2627f98e56aa62b /src/cpu/amd/agesa/family14/model_14_init.c
parentb32e1f414964ef2fac4a8902be7a868f4fddfb8a (diff)
downloadcoreboot-3b8bfeba437f85fbd428c1b76cfd417d55b9920f.tar.xz
cpu/amd/agesa/family1*: Use IS_ENABLED() macro
Change-Id: I54d6871597121392625293027a794d52cf28dd4c Signed-off-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Reviewed-on: http://review.coreboot.org/7542 Reviewed-by: Bruce Griffith <Bruce.Griffith@se-eng.com> Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/cpu/amd/agesa/family14/model_14_init.c')
-rw-r--r--src/cpu/amd/agesa/family14/model_14_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/amd/agesa/family14/model_14_init.c b/src/cpu/amd/agesa/family14/model_14_init.c
index 60a88c734e..ac9c8d98ac 100644
--- a/src/cpu/amd/agesa/family14/model_14_init.c
+++ b/src/cpu/amd/agesa/family14/model_14_init.c
@@ -40,7 +40,7 @@ static void model_14_init(device_t dev)
{
u32 i;
msr_t msr;
-#if CONFIG_LOGICAL_CPUS
+#if IS_ENABLED(CONFIG_LOGICAL_CPUS)
u32 siblings;
#endif
printk(BIOS_DEBUG, "Model 14 Init.\n");
@@ -89,7 +89,7 @@ static void model_14_init(device_t dev)
/* Enable the local cpu apics */
setup_lapic();
-#if CONFIG_LOGICAL_CPUS
+#if IS_ENABLED(CONFIG_LOGICAL_CPUS)
siblings = cpuid_ecx(0x80000008) & 0xff;
if (siblings > 0) {