soc/intel/denverton_ns: Get rid of device_t

Use of device_t has been abandoned in ramstage.

Change-Id: I15e624b40d11f61a3870a6083be82d062690498d
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26587
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
This commit is contained in:
Elyes HAOUAS
2018-05-27 17:40:58 +02:00
committed by Kyösti Mälkki
parent 143fb46d47
commit 2ec4183c3c
10 changed files with 38 additions and 36 deletions

View File

@@ -33,7 +33,7 @@
static struct smm_relocation_attrs relo_attrs;
static void denverton_core_init(device_t cpu)
static void denverton_core_init(struct device *cpu)
{
msr_t msr;
@@ -246,7 +246,7 @@ static const struct mp_ops mp_ops = {
.post_mp_init = post_mp_init,
};
void denverton_init_cpus(device_t dev)
void denverton_init_cpus(struct device *dev)
{
/* Clear for take-off */
if (mp_init_with_smm(dev->link_list, &mp_ops) < 0)