mb/google: Get rid of device_t

Use of device_t has been abandoned in ramstage.

Change-Id: I8e549e4222ae2ed6b9c46f81c5b5253e8b227ee8
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26086
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Elyes HAOUAS
2018-05-04 20:23:33 +02:00
committed by Patrick Rudolph
parent 0db963a89e
commit d129d43ea7
40 changed files with 92 additions and 92 deletions

View File

@@ -25,7 +25,7 @@ void mainboard_suspend_resume(void)
outb(0xcb, 0xb2);
}
static void mainboard_init(device_t dev)
static void mainboard_init(struct device *dev)
{
lan_init();
}
@@ -33,7 +33,7 @@ static void mainboard_init(device_t dev)
// mainboard_enable is executed as first thing after
// enumerate_buses().
static void mainboard_enable(device_t dev)
static void mainboard_enable(struct device *dev)
{
dev->ops->init = mainboard_init;
dev->ops->acpi_inject_dsdt_generator = chromeos_dsdt_generator;