git: 096104e790fb - main - linuxkpi: Add rom and romlen to struct pci_dev
Neel Chauhan
nc at FreeBSD.org
Mon Jun 7 22:53:17 UTC 2021
The branch main has been updated by nc (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=096104e790fb182d230f25f169792cc610b8f41c
commit 096104e790fb182d230f25f169792cc610b8f41c
Author: Neel Chauhan <nc at FreeBSD.org>
AuthorDate: 2021-06-07 22:50:46 +0000
Commit: Neel Chauhan <nc at FreeBSD.org>
CommitDate: 2021-06-07 22:53:24 +0000
linuxkpi: Add rom and romlen to struct pci_dev
Approved by: bz (src), hselasky (src)
Differential Reivison: https://reviews.freebsd.org/D30686
---
sys/compat/linuxkpi/common/include/linux/pci.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys/compat/linuxkpi/common/include/linux/pci.h b/sys/compat/linuxkpi/common/include/linux/pci.h
index f1b928b792fa..36a82e81b4bc 100644
--- a/sys/compat/linuxkpi/common/include/linux/pci.h
+++ b/sys/compat/linuxkpi/common/include/linux/pci.h
@@ -230,6 +230,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;
};
More information about the dev-commits-src-main
mailing list