aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ioat
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/ioat')
-rw-r--r--sys/dev/ioat/ioat.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/ioat/ioat.c b/sys/dev/ioat/ioat.c
index 1224e207bec0..2052ff48c4b9 100644
--- a/sys/dev/ioat/ioat.c
+++ b/sys/dev/ioat/ioat.c
@@ -236,10 +236,11 @@ static struct _pcsid
{ 0x6f278086, "BDX IOAT Ch7" },
{ 0x6f2e8086, "BDX IOAT Ch0 (RAID)" },
{ 0x6f2f8086, "BDX IOAT Ch1 (RAID)" },
-
- { 0x00000000, NULL }
};
+MODULE_PNP_INFO("W32:vendor/device;D:human", pci, ioat, pci_ids,
+ sizeof(pci_ids[0]), nitems(pci_ids));
+
/*
* OS <-> Driver linkage functions
*/
@@ -250,7 +251,7 @@ ioat_probe(device_t device)
u_int32_t type;
type = pci_get_devid(device);
- for (ep = pci_ids; ep->type; ep++) {
+ for (ep = pci_ids; ep < &pci_ids[nitems(pci_ids)]; ep++) {
if (ep->type == type) {
device_set_desc(device, ep->desc);
return (0);