aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Wibo <obiwac@FreeBSD.org>2025-12-15 23:14:08 +0000
committerAymeric Wibo <obiwac@FreeBSD.org>2025-12-15 23:23:35 +0000
commit5bd839792b6a6afacb50f782b6013100b5ff9110 (patch)
tree2a34ff7fcb7fa6ca371eb6c64a213b8ee687c7d7
parentefc8353481e3b65daa201b7a20faad3dcc4b7f7a (diff)
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
-rw-r--r--sys/dev/thunderbolt/nhi_pci.c2
-rw-r--r--sys/dev/thunderbolt/tb_pcib.c2
2 files changed, 0 insertions, 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)