svn commit: r335081 - head/sys/dev/bwn
Warner Losh
imp at FreeBSD.org
Wed Jun 13 20:25:16 UTC 2018
Author: imp
Date: Wed Jun 13 20:25:13 2018
New Revision: 335081
URL: https://svnweb.freebsd.org/changeset/base/335081
Log:
Add PNP info to PCI attachment of bwn driver
Reviewed by: imp, chuck
Submitted by: Lakhan Shiva Kamireddy <lakhanshiva at gmail.com>
Sponsored by: Google, Inc. (GSoC 2018)
Modified:
head/sys/dev/bwn/if_bwn_pci.c
Modified: head/sys/dev/bwn/if_bwn_pci.c
==============================================================================
--- head/sys/dev/bwn/if_bwn_pci.c Wed Jun 13 20:25:09 2018 (r335080)
+++ head/sys/dev/bwn/if_bwn_pci.c Wed Jun 13 20:25:13 2018 (r335081)
@@ -295,6 +295,10 @@ DEFINE_CLASS_0(bwn_pci, bwn_pci_driver, bwn_pci_method
sizeof(struct bwn_pci_softc));
DRIVER_MODULE_ORDERED(bwn_pci, pci, bwn_pci_driver, bwn_pci_devclass, NULL,
NULL, SI_ORDER_ANY);
+MODULE_PNP_INFO("U16:vendor;U16:device;D:#", pci, bwn_siba,
+ siba_devices, sizeof(siba_devices[0]), nitems(siba_devices) - 1);
+MODULE_PNP_INFO("U16:vendor;U16:device;D:#", pci, bwn_bcma,
+ bcma_devices, sizeof(bcma_devices[0]), nitems(bcma_devices) - 1);
DRIVER_MODULE(bhndb, bwn_pci, bhndb_pci_driver, bhndb_devclass, NULL, NULL);
MODULE_DEPEND(bwn_pci, bwn, 1, 1, 1);
More information about the svn-src-all
mailing list