diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-04 21:52:58 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-05-08 14:22:39 +0000 |
commit | 66e602a7fab46b4879ad78edbb722a282b0ab53c (patch) | |
tree | de166e085fb72b7b9d97efc0cb6fad9e84d89ccf /src/mainboard/supermicro/h8qme_fam10 | |
parent | 61e07f6ed6ffbadff82f2d4e1b21dcc111e33762 (diff) |
mb/supermicro: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: Icc633dc499568cf672f5e244e026e45a6eea5fd8
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26095
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Diffstat (limited to 'src/mainboard/supermicro/h8qme_fam10')
-rw-r--r-- | src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c | 2 | ||||
-rw-r--r-- | src/mainboard/supermicro/h8qme_fam10/mptable.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c b/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c index 813fa77ea2..75b1347aba 100644 --- a/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c +++ b/src/mainboard/supermicro/h8qme_fam10/get_bus_conf.c @@ -68,7 +68,7 @@ void get_bus_conf(void) unsigned apicid_base; struct mb_sysconf_t *m; - device_t dev; + struct device *dev; int i; if(get_bus_conf_done == 1) return; //do it only once diff --git a/src/mainboard/supermicro/h8qme_fam10/mptable.c b/src/mainboard/supermicro/h8qme_fam10/mptable.c index 9a60194b7c..275b350666 100644 --- a/src/mainboard/supermicro/h8qme_fam10/mptable.c +++ b/src/mainboard/supermicro/h8qme_fam10/mptable.c @@ -46,7 +46,7 @@ static void *smp_write_config_table(void *v) /*I/O APICs: APIC ID Version State Address*/ { - device_t dev; + struct device *dev; struct resource *res; uint32_t dword; |