Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Jun 2021 00:41:05 GMT
From:      Neel Chauhan <nc@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 04456f711853 - stable/13 - linuxkpi: Add rom and romlen to struct pci_dev
Message-ID:  <202106120041.15C0f5WJ057688@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by nc (ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=04456f7118533676c50f29464b58e541f03757fe

commit 04456f7118533676c50f29464b58e541f03757fe
Author:     Neel Chauhan <nc@FreeBSD.org>
AuthorDate: 2021-06-07 22:50:46 +0000
Commit:     Neel Chauhan <nc@FreeBSD.org>
CommitDate: 2021-06-12 00:36:05 +0000

    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 096104e790fb182d230f25f169792cc610b8f41c)
---
 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 4c07edebc796..0cc467f4cc8f 100644
--- a/sys/compat/linuxkpi/common/include/linux/pci.h
+++ b/sys/compat/linuxkpi/common/include/linux/pci.h
@@ -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;
 };



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202106120041.15C0f5WJ057688>