aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/biostar/a68n_5200
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2018-05-04 20:08:47 +0200
committerPatrick Rudolph <siro@das-labor.org>2018-05-08 17:50:36 +0000
commit6c5925909dac3b743d6062fc6a45f0e5e992ffaf (patch)
tree096932ce3c1934780d68c4808107f18e6f36fb2d /src/mainboard/biostar/a68n_5200
parent497737b711dfbf21e710060986a6ffc2c0525359 (diff)
mb/biostar: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: Ifc9d82270513f4b4f34d9cf210c37029202b5a5f Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26079 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/biostar/a68n_5200')
-rw-r--r--src/mainboard/biostar/a68n_5200/mainboard.c2
-rw-r--r--src/mainboard/biostar/a68n_5200/mptable.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/biostar/a68n_5200/mainboard.c b/src/mainboard/biostar/a68n_5200/mainboard.c
index a149ee598d..65e838bd9f 100644
--- a/src/mainboard/biostar/a68n_5200/mainboard.c
+++ b/src/mainboard/biostar/a68n_5200/mainboard.c
@@ -19,7 +19,7 @@
/**********************************************
* enable the dedicated function in mainboard.
**********************************************/
-static void mainboard_enable(device_t dev)
+static void mainboard_enable(struct device *dev)
{
printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
}
diff --git a/src/mainboard/biostar/a68n_5200/mptable.c b/src/mainboard/biostar/a68n_5200/mptable.c
index fb8a7ce08c..89881f770c 100644
--- a/src/mainboard/biostar/a68n_5200/mptable.c
+++ b/src/mainboard/biostar/a68n_5200/mptable.c
@@ -177,7 +177,7 @@ static void *smp_write_config_table(void *v)
/* on board NIC & Slot PCIE. */
/* PCI slots */
- device_t dev = dev_find_slot(0, PCI_DEVFN(0x14, 4));
+ struct device *dev = dev_find_slot(0, PCI_DEVFN(0x14, 4));
if (dev && dev->enabled) {
u8 bus_pci = dev->link_list->secondary;
/* PCI_SLOT 0. */