linuxkpi: Add rom and romlen to struct pci_dev

Approved by:		bz (src), hselasky (src)
Differential Reivison:	https://reviews.freebsd.org/D30686

(cherry picked from commit 096104e790)
This commit is contained in:
Neel Chauhan 2021-06-07 15:50:46 -07:00
parent 4b70759183
commit 04456f7118

View file

@ -243,6 +243,8 @@ struct pci_dev {
uint32_t class;
uint8_t revision;
bool msi_enabled;
phys_addr_t rom;
size_t romlen;
TAILQ_HEAD(, pci_mmio_region) mmio;
};