northbridge/intel/i855: transition away from device_t

Replace the use of the old device_t definition inside
northbridge/intel/i855.

Change-Id: Iae66d1ef838095a560868d9c9ff81f4208f814f1
Signed-off-by: Antonello Dettori <dev@dettori.io>
Reviewed-on: https://review.coreboot.org/17314
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Antonello Dettori 2016-11-08 18:44:46 +01:00 committed by Martin Roth
parent 17f3c0f6a2
commit 28139522a7
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ static void print_debug_pci_dev(unsigned dev)
static inline void print_pci_devices(void) static inline void print_pci_devices(void)
{ {
device_t dev; pci_devfn_t dev;
for (dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0, 0x1f, 0x7); dev <= PCI_DEV(0, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {
@ -59,7 +59,7 @@ static void dump_pci_device(unsigned dev)
static inline void dump_pci_devices(void) static inline void dump_pci_devices(void)
{ {
device_t dev; pci_devfn_t dev;
for (dev = PCI_DEV(0, 0, 0); for (dev = PCI_DEV(0, 0, 0);
dev <= PCI_DEV(0, 0x1f, 0x7); dev <= PCI_DEV(0, 0x1f, 0x7);
dev += PCI_DEV(0,0,1)) { dev += PCI_DEV(0,0,1)) {