diff options
author | brooks <brooks@FreeBSD.org> | 2002-02-26 17:35:21 +0000 |
---|---|---|
committer | brooks <brooks@FreeBSD.org> | 2002-02-26 17:35:21 +0000 |
commit | 8bf18cd56425bbcd2682f19bb126411f43d0abb0 (patch) | |
tree | 8c93b0b25dd1483777250e66fba88bc896ad1bb8 /sys/dev | |
parent | a9d43ec4d7d553befb2dfaf78d86cad409271add (diff) | |
download | FreeBSD-src-8bf18cd56425bbcd2682f19bb126411f43d0abb0.zip FreeBSD-src-8bf18cd56425bbcd2682f19bb126411f43d0abb0.tar.gz |
Add a missing field to the end of array marker in the pci_ids array.
Submitted by: sumikawa
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/wi/if_wi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/wi/if_wi.c b/sys/dev/wi/if_wi.c index c0a4da7..1620593 100644 --- a/sys/dev/wi/if_wi.c +++ b/sys/dev/wi/if_wi.c @@ -231,7 +231,7 @@ static struct { {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 PCI WaveLAN/IEEE 802.11"}, {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11 PCI IEEE 802.11b"}, {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Linksys WMP11 PCI Prism2.5"}, - {0, 0, NULL} + {0, 0, 0, NULL} }; #endif |