diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-02-08 15:08:21 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-04-30 09:23:38 +0000 |
commit | fc1b49691f3c1c509ff0b6fb9e569893e687b4ef (patch) | |
tree | 4aa231174f49c5b075a2190ca9456492af5fbdc4 /src/cpu | |
parent | 64d2d106a46036069eba00c75872a499f0678351 (diff) | |
download | coreboot-fc1b49691f3c1c509ff0b6fb9e569893e687b4ef.tar.xz |
cpu/x86: Get rid of device_t
Use of `device_t` has been abandoned in ramstage.
Change-Id: I4c8acebb4a957a9600de15ea844f620a8909977b
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/23656
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/lapic/lapic_cpu_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/x86/lapic/lapic_cpu_init.c b/src/cpu/x86/lapic/lapic_cpu_init.c index 382b6e4014..0a51a08477 100644 --- a/src/cpu/x86/lapic/lapic_cpu_init.c +++ b/src/cpu/x86/lapic/lapic_cpu_init.c @@ -464,9 +464,9 @@ static void start_other_cpus(struct bus *cpu_bus, struct device *bsp_cpu) } -static void smm_other_cpus(struct bus *cpu_bus, device_t bsp_cpu) +static void smm_other_cpus(struct bus *cpu_bus, struct device *bsp_cpu) { - device_t cpu; + struct device *cpu; int pre_count = atomic_read(&active_cpus); /* Loop through the cpus once to let them run through SMM relocator */ |