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>
This commit is contained in:
Elyes HAOUAS 2018-02-08 15:08:21 +01:00 committed by Patrick Georgi
parent 64d2d106a4
commit fc1b49691f
1 changed files with 2 additions and 2 deletions

View File

@ -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); int pre_count = atomic_read(&active_cpus);
/* Loop through the cpus once to let them run through SMM relocator */ /* Loop through the cpus once to let them run through SMM relocator */