src: Get rid of device_t
Use of device_t is deprecated. Change-Id: I6adc0429ae9ecc8f726d6167a6458d9333dc515f Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27036 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
committed by
Patrick Georgi
parent
c8a649c08f
commit
68c851bcd7
@ -298,15 +298,14 @@ void spi_init(void)
|
||||
uint8_t *rcrb; /* Root Complex Register Block */
|
||||
uint32_t rcba; /* Root Complex Base Address */
|
||||
uint8_t bios_cntl;
|
||||
device_t dev;
|
||||
ich9_spi_regs *ich9_spi;
|
||||
ich7_spi_regs *ich7_spi;
|
||||
uint16_t hsfs;
|
||||
|
||||
#ifdef __SIMPLE_DEVICE__
|
||||
dev = PCI_DEV(0, 31, 0);
|
||||
pci_devfn_t dev = PCI_DEV(0, 31, 0);
|
||||
#else
|
||||
dev = dev_find_slot(0, PCI_DEVFN(31, 0));
|
||||
struct device *dev = dev_find_slot(0, PCI_DEVFN(31, 0));
|
||||
#endif
|
||||
|
||||
pci_read_config_dword(dev, 0xf0, &rcba);
|
||||
|
Reference in New Issue
Block a user