diff options
author | Warner Losh <imp@FreeBSD.org> | 2018-06-01 19:42:59 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2018-06-01 19:42:59 +0000 |
commit | 16bc63ec756c9ebae70b830cac4ca1f4cc6d3f79 (patch) | |
tree | 5c992569060eedd9c6288ddd17eee4d71060a028 /sys/dev | |
parent | 651a790808d46b531062e7d4b4979b11bb45a2bb (diff) | |
download | src-16bc63ec756c9ebae70b830cac4ca1f4cc6d3f79.tar.gz src-16bc63ec756c9ebae70b830cac4ca1f4cc6d3f79.zip |
Add PNP_INFO to aac
Reviewed by: imp, chuck
Submitted by: Lakhan Shiva Kamireddy <lakhanshiva@gmail.com>
Sponsored by: Google, Inc. (GSoC 2018)
Notes
Notes:
svn path=/head/; revision=334491
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/aac/aac_pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/aac/aac_pci.c b/sys/dev/aac/aac_pci.c index 1685abe8a00e..399e55a9a47f 100644 --- a/sys/dev/aac/aac_pci.c +++ b/sys/dev/aac/aac_pci.c @@ -493,6 +493,8 @@ static driver_t aacch_driver = { static devclass_t aacch_devclass; DRIVER_MODULE(aacch, pci, aacch_driver, aacch_devclass, NULL, NULL); +MODULE_PNP_INFO("U16:vendor;U16:device;", pci, aac, + aac_identifiers, sizeof(aac_identifiers[0]), nitems(aac_identifiers) - 1); static int aacch_probe(device_t dev) |