nb/via/vx900: Get rid of device_t

Use of device_t is deprecated.

Change-Id: I70dcefd5bc9864931f66bece1f044f806f5d7ae0
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/28655
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
Elyes HAOUAS 2018-09-18 12:19:48 +02:00 committed by Martin Roth
parent 0f416d6874
commit 62bafca159
1 changed files with 4 additions and 4 deletions

View File

@ -50,12 +50,12 @@ void pci_mod_config16(pci_devfn_t dev, unsigned int where,
void pci_mod_config32(pci_devfn_t dev, unsigned int where,
uint32_t clr_mask, uint32_t set_mask);
#else
void dump_pci_device(device_t dev);
void pci_mod_config8(device_t dev, unsigned int where,
void dump_pci_device(struct device *dev);
void pci_mod_config8(struct device *dev, unsigned int where,
uint8_t clr_mask, uint8_t set_mask);
void pci_mod_config16(device_t dev, unsigned int where,
void pci_mod_config16(struct device *dev, unsigned int where,
uint16_t clr_mask, uint16_t set_mask);
void pci_mod_config32(device_t dev, unsigned int where,
void pci_mod_config32(struct device *dev, unsigned int where,
uint32_t clr_mask, uint32_t set_mask);
#endif