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:
Nico Huber
2017-07-26 14:34:09 +02:00
committed by Nico Huber
parent 1e2720e467
commit 4792689f67
2 changed files with 13 additions and 0 deletions

View File

@ -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);
}