diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-06-08 18:31:43 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-06-09 16:39:35 +0000 |
commit | 5cb876cc1fef34e238e37facb36a77dbc45ced9a (patch) | |
tree | c16a4900067f028fdc9812e52fa82b02b1aad990 /src/mainboard/tyan/s2912_fam10 | |
parent | 7a5f77142f68edd03874015300e471eb80d03c45 (diff) |
mainboard: Get rid of device_t in ramstage
Use of device_t has been abandoned in ramstage.
Change-Id: I07e00afbbd2c19cf3ea6e08f228eb39e45f1ad0c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26983
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/tyan/s2912_fam10')
-rw-r--r-- | src/mainboard/tyan/s2912_fam10/mptable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/tyan/s2912_fam10/mptable.c b/src/mainboard/tyan/s2912_fam10/mptable.c index 87d06b83e2..a56e23ead9 100644 --- a/src/mainboard/tyan/s2912_fam10/mptable.c +++ b/src/mainboard/tyan/s2912_fam10/mptable.c @@ -44,7 +44,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; |