Date: Wed, 13 Jun 2018 20:25:05 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r335079 - head/sys/dev/ahci Message-ID: <201806132025.w5DKP5Gj050033@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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),
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806132025.w5DKP5Gj050033>