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:
parent
64d2d106a4
commit
fc1b49691f
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue