summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel
diff options
context:
space:
mode:
authorFabio Aiuto <fabioaiuto83@gmail.com>2022-09-23 16:51:34 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-29 16:47:04 +0000
commit45aae7f10ff2b2fc6a947eb2667eb658188d3b52 (patch)
tree49376ba656bb7211049a97dcd0e3d5dbf8403923 /src/southbridge/intel
parentc5573d62b7b5179cb48144b71f91955464873e6e (diff)
downloadcoreboot-45aae7f10ff2b2fc6a947eb2667eb658188d3b52.tar.gz
coreboot-45aae7f10ff2b2fc6a947eb2667eb658188d3b52.tar.bz2
coreboot-45aae7f10ff2b2fc6a947eb2667eb658188d3b52.zip
treewide: use is_enabled_cpu() on cycles over device list
use is_enabled_cpu() on cycles over device list to check whether the current device is enabled cpu. TEST: compile test and qemu run successfully with coreinfo payload Signed-off-by: Fabio Aiuto <fabioaiuto83@gmail.com> Change-Id: If64bd18f006b6f5fecef4f606c1df7d3a4d42883 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67797 Reviewed-by: Tim Wawrzynczak <inforichland@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/southbridge/intel')
-rw-r--r--src/southbridge/intel/i82371eb/acpi_tables.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/southbridge/intel/i82371eb/acpi_tables.c b/src/southbridge/intel/i82371eb/acpi_tables.c
index 5d4ca699a923..c23c2f6f3173 100644
--- a/src/southbridge/intel/i82371eb/acpi_tables.c
+++ b/src/southbridge/intel/i82371eb/acpi_tables.c
@@ -11,13 +11,8 @@ static int determine_total_number_of_cores(void)
struct device *cpu;
int count = 0;
for (cpu = all_devices; cpu; cpu = cpu->next) {
- if ((cpu->path.type != DEVICE_PATH_APIC) ||
- (cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER)) {
+ if (!is_enabled_cpu(cpu))
continue;
- }
- if (!cpu->enabled) {
- continue;
- }
count++;
}
return count;