soc/amd/stoneyridge: Get rid of device_t

Use of device_t is deprecated.

Change-Id: I6d6dce29591f134f64983387c3b268019d52a602
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/30044
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
Elyes HAOUAS 2018-12-05 10:58:34 +01:00 committed by Patrick Georgi
parent 6f01f4307c
commit c5ad267a37
2 changed files with 2 additions and 2 deletions

View File

@ -434,7 +434,7 @@ void sb_enable_rom(void);
void configure_stoneyridge_i2c(void);
void sb_clk_output_48Mhz(void);
void sb_disable_4dw_burst(void);
void sb_enable(device_t dev);
void sb_enable(struct device *dev);
void southbridge_final(void *chip_info);
void southbridge_init(void *chip_info);
void sb_lpc_port80(void);

View File

@ -700,7 +700,7 @@ void bootblock_fch_init(void)
sb_print_pmxc0_status();
}
void sb_enable(device_t dev)
void sb_enable(struct device *dev)
{
printk(BIOS_DEBUG, "%s\n", __func__);
}