Date: Mon, 7 Jun 2021 22:53:17 GMT From: Neel Chauhan <nc@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 096104e790fb - main - linuxkpi: Add rom and romlen to struct pci_dev Message-ID: <202106072253.157MrH2k006970@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@FreeBSD.org> AuthorDate: 2021-06-07 22:50:46 +0000 Commit: Neel Chauhan <nc@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; };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106072253.157MrH2k006970>