mb/pcengines: Get rid of device_t
Use of device_t has been abandoned in ramstage. Change-Id: I8a05bb00dc640fafa1c8e2eaac6427fdb0169f39 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26100 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
parent
a2e282b06a
commit
9adef1ed56
|
@ -176,7 +176,7 @@ static void config_addon_uart(void)
|
|||
/**********************************************
|
||||
* Enable the dedicated functions of the board.
|
||||
**********************************************/
|
||||
static void mainboard_enable(device_t dev)
|
||||
static void mainboard_enable(struct device *dev)
|
||||
{
|
||||
printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
|
||||
|
||||
|
@ -206,7 +206,7 @@ static void mainboard_enable(device_t dev)
|
|||
const char *smbios_mainboard_serial_number(void)
|
||||
{
|
||||
static char serial[10];
|
||||
device_t nic_dev;
|
||||
struct device *nic_dev;
|
||||
uintptr_t bar18;
|
||||
u32 mac_addr = 0;
|
||||
int i;
|
||||
|
@ -255,7 +255,7 @@ const char *smbios_mainboard_serial_number(void)
|
|||
*/
|
||||
static void usb_oc_setup(void)
|
||||
{
|
||||
device_t dev = dev_find_slot(0, PCI_DEVFN(0x12, 0));
|
||||
struct device *dev = dev_find_slot(0, PCI_DEVFN(0x12, 0));
|
||||
|
||||
pci_write_config32(dev, 0x58, 0x011f0);
|
||||
}
|
||||
|
|
|
@ -158,7 +158,7 @@ static void config_gpio_mux(void)
|
|||
* 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");
|
||||
|
||||
|
@ -185,7 +185,7 @@ static void mainboard_enable(device_t dev)
|
|||
const char *smbios_mainboard_serial_number(void)
|
||||
{
|
||||
static char serial[10];
|
||||
device_t nic_dev;
|
||||
struct device *nic_dev;
|
||||
uintptr_t bar10;
|
||||
u32 mac_addr = 0;
|
||||
int i;
|
||||
|
|
Loading…
Reference in New Issue