aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBjoern A. Zeeb <bz@FreeBSD.org>2018-10-01 10:44:33 +0000
committerBjoern A. Zeeb <bz@FreeBSD.org>2018-10-01 10:44:33 +0000
commitef08929f90885219ce17c2af89b78996f40e37f2 (patch)
tree3b7dfac1ef37af20ce43aca5075981e5f1d911fe /sys/dev
parent1b084a5e5e2b02277b29bff5c333281008196b35 (diff)
downloadsrc-ef08929f90885219ce17c2af89b78996f40e37f2.tar.gz
src-ef08929f90885219ce17c2af89b78996f40e37f2.zip
Fix the MODULE_PNP_INFO() for iwm(4) where I got the bus and module
arguments wrong in r339020. PR: 231625 Reported by: Yuri Pankov (yuripv yuripv.net) Reviewed by: cem, Yuri Pankov (yuripv yuripv.net) Approved by: re (kib) Pointyhat to: bz (a rather big one for this one)
Notes
Notes: svn path=/head/; revision=339038
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/iwm/if_iwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/iwm/if_iwm.c b/sys/dev/iwm/if_iwm.c
index 02f16be65aa1..4e08dacf8c4f 100644
--- a/sys/dev/iwm/if_iwm.c
+++ b/sys/dev/iwm/if_iwm.c
@@ -6460,7 +6460,7 @@ 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,
+MODULE_PNP_INFO("U16:device;P:#;T:vendor=0x8086", pci, iwm_pci_driver,
iwm_devices, nitems(iwm_devices));
MODULE_DEPEND(iwm, firmware, 1, 1, 1);
MODULE_DEPEND(iwm, pci, 1, 1, 1);