device/pci_ops: Drop parameter from pci_bus_default_ops()
A default is a build-time static value, fallback. Return value does not depend of input parameter. Change-Id: I43ae28f465fb46391519ec97a2a50891d458c46d Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/31679 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
@@ -24,7 +24,7 @@ u32 pci_read_config32(struct device *dev, unsigned int where);
|
||||
void pci_write_config8(struct device *dev, unsigned int where, u8 val);
|
||||
void pci_write_config16(struct device *dev, unsigned int where, u16 val);
|
||||
void pci_write_config32(struct device *dev, unsigned int where, u32 val);
|
||||
const struct pci_bus_operations *pci_bus_default_ops(struct device *dev);
|
||||
const struct pci_bus_operations *pci_bus_default_ops(void);
|
||||
#endif
|
||||
|
||||
#ifdef __SIMPLE_DEVICE__
|
||||
|
Reference in New Issue
Block a user