Paul Menzel (paulepanter@users.sourceforge.net) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/2625
-gerrit
commit 0996b48bf2a693103fdc8b5b3085ae602486abc8 Author: Patrick Georgi patrick@georgi-clan.de Date: Sat Mar 9 13:24:43 2013 +0100
pci.h: Drop unused `mainboard_pci_subsystem*` prototypes
We used to allow mainboards to override 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 */