Patrick Georgi (patrick@georgi-clan.de) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2625
-gerrit
commit b1e52e21a3e836d893db2a1919bfd132b89201d9 Author: Patrick Georgi patrick@georgi-clan.de Date: Sat Mar 9 13:24:43 2013 +0100
Drop prototypes that aren't used anymore
We used to allow mainboards to override setting subsystems using mainboard_pci_subsystem_vendor_id and mainboard_pci_subsystem_device_id
Mechanisms have changed and the only occurrence of these names is in the header.
Change-Id: Ic2ab13201a2740c98868fdf580140b7758b62263 Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- src/include/device/pci.h | 3 --- 1 file changed, 3 deletions(-)
diff --git a/src/include/device/pci.h b/src/include/device/pci.h index a215a2a..132c48c 100644 --- a/src/include/device/pci.h +++ b/src/include/device/pci.h @@ -106,8 +106,5 @@ static inline const struct pci_bus_operations *ops_pci_bus(struct bus *bus) return bops; }
-unsigned mainboard_pci_subsystem_vendor_id(struct device *dev); -unsigned mainboard_pci_subsystem_device_id(struct device *dev); - #endif #endif /* PCI_H */