cpu/amd/quadcore: Remove variable set but not used

Change-Id: I73f35ea80976ab445c797c4800b1e2fd24d34fdf
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32893
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2019-05-20 12:35:48 +02:00 committed by Patrick Georgi
parent e0b9aea7be
commit dedf66ecdf
1 changed files with 3 additions and 3 deletions

View File

@ -95,13 +95,13 @@ void real_start_other_core(uint32_t nodeid, uint32_t cores)
*/ */
/* Wait for the first core of each compute unit to start... */ /* Wait for the first core of each compute unit to start... */
uint32_t timeout;
for (i = 1; i < cores + 1; i++) { for (i = 1; i < cores + 1; i++) {
if (!(i & 0x1)) { if (!(i & 0x1)) {
uint32_t ap_apicid = uint32_t ap_apicid =
get_boot_apic_id(nodeid, i); get_boot_apic_id(nodeid, i);
timeout = wait_cpu_state(ap_apicid, /* Timeout */
F10_APSTATE_ASLEEP, F10_APSTATE_ASLEEP); wait_cpu_state(ap_apicid, F10_APSTATE_ASLEEP,
F10_APSTATE_ASLEEP);
} }
} }