southbridge/intel/i82801dx: transition away from device_t
Replace the use of the old device_t definition inside southbridge/intel/i82801dx. Change-Id: Ic08a23f672f8b5e40b837d49a9475d52c728a306 Signed-off-by: Antonello Dettori <dev@dettori.io> Reviewed-on: https://review.coreboot.org/16485 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
3c6bfaf8ca
commit
f9aac2f4ac
|
@ -22,7 +22,7 @@
|
|||
|
||||
void enable_smbus(void)
|
||||
{
|
||||
device_t dev = PCI_DEV(0x0, 0x1f, 0x3);
|
||||
pci_devfn_t dev = PCI_DEV(0x0, 0x1f, 0x3);
|
||||
|
||||
printk(BIOS_DEBUG, "SMBus controller enabled\n");
|
||||
/* set smbus iobase */
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
#include <arch/acpi.h>
|
||||
|
||||
#if !defined(__ASSEMBLER__)
|
||||
#if !defined(__PRE_RAM__)
|
||||
#if !defined(__SIMPLE_DEVICE__)
|
||||
#include "chip.h"
|
||||
extern void i82801dx_enable(device_t dev);
|
||||
#else
|
||||
|
|
|
@ -240,7 +240,7 @@ static void busmaster_disable_on_bus(int bus)
|
|||
for (slot = 0; slot < 0x20; slot++) {
|
||||
for (func = 0; func < 8; func++) {
|
||||
u32 reg32;
|
||||
device_t dev = PCI_DEV(bus, slot, func);
|
||||
pci_devfn_t dev = PCI_DEV(bus, slot, func);
|
||||
|
||||
val = pci_read_config32(dev, PCI_VENDOR_ID);
|
||||
|
||||
|
|
Loading…
Reference in New Issue