From d129d43ea7c0fae86bc252457cf5f724f944d3b5 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Fri, 4 May 2018 20:23:33 +0200 Subject: mb/google: Get rid of device_t Use of device_t has been abandoned in ramstage. Change-Id: I8e549e4222ae2ed6b9c46f81c5b5253e8b227ee8 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/26086 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/mainboard/google/fizz/mainboard.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mainboard/google/fizz/mainboard.c') diff --git a/src/mainboard/google/fizz/mainboard.c b/src/mainboard/google/fizz/mainboard.c index e6a0296274..eb48e40453 100644 --- a/src/mainboard/google/fizz/mainboard.c +++ b/src/mainboard/google/fizz/mainboard.c @@ -227,13 +227,13 @@ const char *smbios_mainboard_sku(void) return sku_str; } -static void mainboard_init(device_t dev) +static void mainboard_init(struct device *dev) { mainboard_ec_init(); } static unsigned long mainboard_write_acpi_tables( - device_t device, unsigned long current, acpi_rsdp_t *rsdp) + struct device *device, unsigned long current, acpi_rsdp_t *rsdp) { const char *oem_id = "GOOGLE"; const char *oem_table_id = "FIZZ"; @@ -291,9 +291,9 @@ static void set_bj_adapter_limit(void) printk(BIOS_ERR, "Failed to set BJ limit\n"); } -static void mainboard_enable(device_t dev) +static void mainboard_enable(struct device *dev) { - device_t root = SA_DEV_ROOT; + struct device *root = SA_DEV_ROOT; config_t *conf = root->chip_info; mainboard_set_power_limits(conf); -- cgit v1.2.3