mb/nvidia/l1_2pvv: Get rid of device_t

Use of device_t has been abandoned in ramstage.

Change-Id: Ife8ca30322d83c6d9276e79c057f12a901d6e8f2
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26312
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes HAOUAS 2018-05-16 11:26:59 +02:00 committed by Kyösti Mälkki
parent 6fcf7de925
commit ab3a24ba2e
2 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@ static unsigned get_hcid(unsigned i)
unsigned devn = sysconf.hcdn[i] & 0xff; unsigned devn = sysconf.hcdn[i] & 0xff;
device_t dev; struct device *dev;
dev = dev_find_slot(busn, PCI_DEVFN(devn,0)); dev = dev_find_slot(busn, PCI_DEVFN(devn,0));

View File

@ -45,7 +45,7 @@ static void *smp_write_config_table(void *v)
/*I/O APICs: APIC ID Version State Address*/ /*I/O APICs: APIC ID Version State Address*/
{ {
device_t dev; struct device *dev;
struct resource *res; struct resource *res;
uint32_t dword; uint32_t dword;
@ -115,7 +115,7 @@ static void *smp_write_config_table(void *v)
//Slot PCIE //Slot PCIE
for (j = 2; j < 8; j++) { for (j = 2; j < 8; j++) {
device_t dev; struct device *dev;
dev = dev_find_slot(m->bus_mcp55, PCI_DEVFN(sbdn + 0x0a + j - 2 , 0)); dev = dev_find_slot(m->bus_mcp55, PCI_DEVFN(sbdn + 0x0a + j - 2 , 0));
if (!dev || !dev->enabled) if (!dev || !dev->enabled)
continue; continue;
@ -126,7 +126,7 @@ static void *smp_write_config_table(void *v)
//Slot PCI 32 //Slot PCI 32
{ {
device_t dev; struct device *dev;
dev = dev_find_slot(m->bus_mcp55, PCI_DEVFN(sbdn + 6 , 0)); dev = dev_find_slot(m->bus_mcp55, PCI_DEVFN(sbdn + 6 , 0));
if (dev && dev->enabled) { if (dev && dev->enabled) {
for (i = 0; i < 4; i++) for (i = 0; i < 4; i++)
@ -146,7 +146,7 @@ static void *smp_write_config_table(void *v)
//Slot PCIE //Slot PCIE
for (j = 2; j < 8; j++) { for (j = 2; j < 8; j++) {
device_t dev; struct device *dev;
dev = dev_find_slot(m->bus_mcp55b, PCI_DEVFN(m->sbdnb + 0x0a + j - 2 , 0)); dev = dev_find_slot(m->bus_mcp55b, PCI_DEVFN(m->sbdnb + 0x0a + j - 2 , 0));
if (!dev || !dev->enabled) if (!dev || !dev->enabled)
continue; continue;