diff --git a/sys/dev/thunderbolt/nhi_pci.c b/sys/dev/thunderbolt/nhi_pci.c index 865963e275e..14cae742744 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 bc4fc1ce00e..e6f0115364d 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)