libpayload: Add pci_free_dev() and some boilerplate
Add just enough code and boilerplate to keep it compatible with future libflashrom. Change-Id: If0d46fab141da525f8f115d3f6045a8c417569eb Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/20955 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
1e2720e467
commit
4792689f67
|
@ -88,7 +88,14 @@ struct pci_filter {
|
|||
struct pci_dev *devices;
|
||||
};
|
||||
|
||||
enum pci_access_type { /* dummy for code compatibility */
|
||||
PCI_ACCESS_AUTO,
|
||||
PCI_ACCESS_I386_TYPE1,
|
||||
PCI_ACCESS_MAX
|
||||
};
|
||||
|
||||
struct pci_access {
|
||||
unsigned int method; /* dummy for code compatibility */
|
||||
struct pci_dev *devices;
|
||||
};
|
||||
|
||||
|
@ -108,5 +115,6 @@ int pci_filter_match(struct pci_filter*, struct pci_dev*);
|
|||
void pci_filter_init(struct pci_access*, struct pci_filter*);
|
||||
void pci_scan_bus(struct pci_access*);
|
||||
struct pci_dev *pci_get_dev(struct pci_access*, u16, u8, u8, u8);
|
||||
void pci_free_dev(struct pci_dev *);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -219,3 +219,8 @@ struct pci_dev *pci_get_dev(struct pci_access* pacc, u16 domain, u8 bus, u8 dev,
|
|||
cur->func = func;
|
||||
return cur;
|
||||
}
|
||||
|
||||
void pci_free_dev(struct pci_dev *const dev)
|
||||
{
|
||||
free(dev);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue