The branch main has been updated by obiwac: URL: https://cgit.FreeBSD.org/src/commit/?id=5bd839792b6a6afacb50f782b6013100b5ff9110
commit 5bd839792b6a6afacb50f782b6013100b5ff9110 Author: Aymeric Wibo <[email protected]> AuthorDate: 2025-12-15 23:14:08 +0000 Commit: Aymeric Wibo <[email protected]> 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 <[email protected]> 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)
