aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2018-09-29 21:14:54 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2018-09-29 21:14:54 +0000
commit916023bda93374d9d76a10e15eaaade8b77ab5bc (patch)
tree5a780b80718c0edf903c422d66255eb2b2d5b6be /sys/dev
parentea28e71e864156e6e3f1ddf5e1edf2c283535a23 (diff)
downloadsrc-916023bda93374d9d76a10e15eaaade8b77ab5bc.tar.gz
src-916023bda93374d9d76a10e15eaaade8b77ab5bc.zip
Provide MODULE_PNP_INFO() for iwm(4) so that devmatch(8) can
do its job. PR: 231625 Submitted by: Yuri Pankov (yuripv yuripv.net) Approved by: re (kib)
Notes
Notes: svn path=/head/; revision=339020
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/iwm/if_iwm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/iwm/if_iwm.c b/sys/dev/iwm/if_iwm.c
index 9daa85257ac9..02f16be65aa1 100644
--- a/sys/dev/iwm/if_iwm.c
+++ b/sys/dev/iwm/if_iwm.c
@@ -6460,6 +6460,8 @@ static driver_t iwm_pci_driver = {
static devclass_t iwm_devclass;
DRIVER_MODULE(iwm, pci, iwm_pci_driver, iwm_devclass, NULL, NULL);
+MODULE_PNP_INFO("U16:device;P:#;T:vendor=0x8086", iwm_pci_driver, iwm,
+ iwm_devices, nitems(iwm_devices));
MODULE_DEPEND(iwm, firmware, 1, 1, 1);
MODULE_DEPEND(iwm, pci, 1, 1, 1);
MODULE_DEPEND(iwm, wlan, 1, 1, 1);