summaryrefslogtreecommitdiffstats
path: root/src/mainboard/asus/m4a785-m/get_bus_conf.c
diff options
context:
space:
mode:
authorTimothy Pearson <tpearson@raptorengineeringinc.com>2015-10-27 16:48:36 -0500
committerPatrick Georgi <pgeorgi@google.com>2015-10-29 15:38:12 +0100
commitd4bbfe863b8d7f0018e1b1a35034f783293926ea (patch)
tree5879636080f8e42f069c42c49f3ff2ae5bbddc09 /src/mainboard/asus/m4a785-m/get_bus_conf.c
parentce2564ac519fd974eeaa070ccb30d5a12e0c3334 (diff)
downloadcoreboot-d4bbfe863b8d7f0018e1b1a35034f783293926ea.tar.gz
coreboot-d4bbfe863b8d7f0018e1b1a35034f783293926ea.tar.bz2
coreboot-d4bbfe863b8d7f0018e1b1a35034f783293926ea.zip
mainboard: Convert #ifdef to IS_ENABLED in get_bus_conf.c
Change-Id: I254e9e9e65519edcf4d3f1ecc385af16d18c2367 Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com> Reviewed-on: http://review.coreboot.org/12208 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/asus/m4a785-m/get_bus_conf.c')
-rw-r--r--src/mainboard/asus/m4a785-m/get_bus_conf.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/mainboard/asus/m4a785-m/get_bus_conf.c b/src/mainboard/asus/m4a785-m/get_bus_conf.c
index 3c274a887fd1..babc8422c739 100644
--- a/src/mainboard/asus/m4a785-m/get_bus_conf.c
+++ b/src/mainboard/asus/m4a785-m/get_bus_conf.c
@@ -23,9 +23,7 @@
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
-#if CONFIG_LOGICAL_CPUS
#include <cpu/amd/multicore.h>
-#endif
#include <cpu/amd/amdfam10_sysconf.h>
@@ -107,10 +105,9 @@ void get_bus_conf(void)
}
/* I/O APICs: APIC ID Version State Address */
-#if CONFIG_LOGICAL_CPUS
- apicid_base = get_apicid_base(1);
-#else
- apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
-#endif
+ if (IS_ENABLED(CONFIG_LOGICAL_CPUS))
+ apicid_base = get_apicid_base(1);
+ else
+ apicid_base = CONFIG_MAX_PHYSICAL_CPUS;
apicid_sb700 = apicid_base + 0;
}