diff options
author | Stefan Reinauer <reinauer@chromium.org> | 2013-02-12 15:20:54 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2013-02-14 07:07:20 +0100 |
commit | 0aa37c488bf785466e0db9897805ebf287af48eb (patch) | |
tree | bbbdb3fd2cd6e9972d44df79e5c1232ba1928111 /src/device/device_util.c | |
parent | 398e84c71a15b7db8c631bb5b17d1a1a60c91128 (diff) | |
download | coreboot-0aa37c488bf785466e0db9897805ebf287af48eb.tar.xz |
sconfig: rename lapic_cluster -> cpu_cluster
The name lapic_cluster is a bit misleading, since the construct is not local
APIC specific by concept. As implementations and hardware change, be more
generic about our naming. This will allow us to support non-x86 systems without
adding new keywords.
Change-Id: Icd7f5fcf6f54d242eabb5e14ee151eec8d6cceb1
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Signed-off-by: David Hendricks <dhendrix@chromium.org>
Reviewed-on: http://review.coreboot.org/2377
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/device/device_util.c')
-rw-r--r-- | src/device/device_util.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/device/device_util.c b/src/device/device_util.c index 60f555af3c..9b9bc40735 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -209,9 +209,9 @@ const char *dev_path(device_t dev) sprintf(buffer, "DOMAIN: %04x", dev->path.domain.domain); break; - case DEVICE_PATH_APIC_CLUSTER: - sprintf(buffer, "APIC_CLUSTER: %01x", - dev->path.apic_cluster.cluster); + case DEVICE_PATH_CPU_CLUSTER: + sprintf(buffer, "CPU_CLUSTER: %01x", + dev->path.cpu_cluster.cluster); break; case DEVICE_PATH_CPU: sprintf(buffer, "CPU: %02x", dev->path.cpu.id); @@ -274,9 +274,9 @@ int path_eq(struct device_path *path1, struct device_path *path2) case DEVICE_PATH_DOMAIN: equal = (path1->domain.domain == path2->domain.domain); break; - case DEVICE_PATH_APIC_CLUSTER: - equal = (path1->apic_cluster.cluster - == path2->apic_cluster.cluster); + case DEVICE_PATH_CPU_CLUSTER: + equal = (path1->cpu_cluster.cluster + == path2->cpu_cluster.cluster); break; case DEVICE_PATH_CPU: equal = (path1->cpu.id == path2->cpu.id); @@ -859,7 +859,7 @@ int dev_count_cpu(void) for (cpu = all_devices; cpu; cpu = cpu->next) { if ((cpu->path.type != DEVICE_PATH_APIC) || - (cpu->bus->dev->path.type != DEVICE_PATH_APIC_CLUSTER)) + (cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER)) continue; if (!cpu->enabled) continue; |