svn commit: r335079 - head/sys/dev/ahci

Warner Losh imp at FreeBSD.org
Wed Jun 13 20:25:07 UTC 2018


Author: imp
Date: Wed Jun 13 20:25:04 2018
New Revision: 335079
URL: https://svnweb.freebsd.org/changeset/base/335079

Log:
  Add PNP info to the PCI attachment of the ahci driver
  
  Mark the PNP table, but still need to handle the CLASS / SUBCLASS /
  REVID matching.
  
  Reviewed by: imp, chuck
  Submitted by: Lakhan Shiva Kamireddy <lakhanshiva at gmail.com>
  Sponsored by: Google, Inc. (GSoC 2018)

Modified:
  head/sys/dev/ahci/ahci_pci.c

Modified: head/sys/dev/ahci/ahci_pci.c
==============================================================================
--- head/sys/dev/ahci/ahci_pci.c	Wed Jun 13 20:25:00 2018	(r335078)
+++ head/sys/dev/ahci/ahci_pci.c	Wed Jun 13 20:25:04 2018	(r335079)
@@ -664,6 +664,9 @@ static driver_t ahci_driver = {
         sizeof(struct ahci_controller)
 };
 DRIVER_MODULE(ahci, pci, ahci_driver, ahci_devclass, NULL, NULL);
+/* Also matches class / subclass / progid XXX need to add when we have masking support */
+MODULE_PNP_INFO("W32:vendor/device", pci, ahci, ahci_ids,
+    sizeof(ahci_ids[0]), nitems(ahci_ids) - 1);
 static device_method_t ahci_ata_methods[] = {
 	DEVMETHOD(device_probe,     ahci_ata_probe),
 	DEVMETHOD(device_attach,    ahci_pci_attach),


More information about the svn-src-head mailing list