From 62bafca159e44b5e9b1782c03eb4021d06fc2845 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Tue, 18 Sep 2018 12:19:48 +0200 Subject: nb/via/vx900: Get rid of device_t Use of device_t is deprecated. Change-Id: I70dcefd5bc9864931f66bece1f044f806f5d7ae0 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/28655 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/northbridge/via/vx900/vx900.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/northbridge') diff --git a/src/northbridge/via/vx900/vx900.h b/src/northbridge/via/vx900/vx900.h index cb7bca9703..a2a360ac0d 100644 --- a/src/northbridge/via/vx900/vx900.h +++ b/src/northbridge/via/vx900/vx900.h @@ -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 -- cgit v1.2.3