Date: Mon, 15 Dec 2025 23:29:04 +0000 From: Aymeric Wibo <obiwac@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 5bd839792b6a - main - thunderbolt: Remove PNP info Message-ID: <694099c0.b8e4.4921a9e4@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by obiwac: URL: https://cgit.FreeBSD.org/src/commit/?id=5bd839792b6a6afacb50f782b6013100b5ff9110 commit 5bd839792b6a6afacb50f782b6013100b5ff9110 Author: Aymeric Wibo <obiwac@FreeBSD.org> AuthorDate: 2025-12-15 23:14:08 +0000 Commit: Aymeric Wibo <obiwac@FreeBSD.org> CommitDate: 2025-12-15 23:23:35 +0000 thunderbolt: Remove PNP info So it isn't matched by devmatch(8) and automatically loaded. The PNP info will be readded once the USB4 driver is more complete. PR: 290827 Reported by: fuz, Marco Siedentopf <siedentm@me.com> Fixes: 2ed9833791f2 (thunderbolt: Import USB4 code) Sponsored by: The FreeBSD Foundation --- sys/dev/thunderbolt/nhi_pci.c | 2 -- sys/dev/thunderbolt/tb_pcib.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/sys/dev/thunderbolt/nhi_pci.c b/sys/dev/thunderbolt/nhi_pci.c index 865963e275ec..14cae7427448 100644 --- a/sys/dev/thunderbolt/nhi_pci.c +++ b/sys/dev/thunderbolt/nhi_pci.c @@ -118,8 +118,6 @@ struct nhi_ident { DRIVER_MODULE_ORDERED(nhi, pci, nhi_pci_driver, NULL, NULL, SI_ORDER_ANY); -MODULE_PNP_INFO("U16:vendor;U16:device;V16:subvendor;V16:subdevice;U32:#;D:#", - pci, nhi, nhi_identifiers, nitems(nhi_identifiers) - 1); static struct nhi_ident * nhi_find_ident(device_t dev) diff --git a/sys/dev/thunderbolt/tb_pcib.c b/sys/dev/thunderbolt/tb_pcib.c index bc4fc1ce00ec..e6f0115364da 100644 --- a/sys/dev/thunderbolt/tb_pcib.c +++ b/sys/dev/thunderbolt/tb_pcib.c @@ -550,8 +550,6 @@ DEFINE_CLASS_1(tbolt, tb_pcib_driver, tb_pcib_methods, DRIVER_MODULE_ORDERED(tb_pcib, pci, tb_pcib_driver, NULL, NULL, SI_ORDER_MIDDLE); MODULE_DEPEND(tb_pcib, pci, 1, 1, 1); -MODULE_PNP_INFO("U16:vendor;U16:device;U16:subvendor;U16:subdevice;U32:#;D:#", - pci, tb_pcib, tb_pcib_identifiers, nitems(tb_pcib_identifiers) - 1); static int tb_pci_probe(device_t dev)help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?694099c0.b8e4.4921a9e4>
