summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2002-04-28 02:04:28 +0000
committerWarner Losh <imp@FreeBSD.org>2002-04-28 02:04:28 +0000
commit9218b6a376e9c656e66438885bcc3b530d1004c9 (patch)
tree0b3882675c636be4643c5d80a2296041f00449a7
parent1254a3ba7b2244fde84af7aa9a8f7aaf89c70a4b (diff)
Notes
-rw-r--r--sys/dev/wi/if_wi_pci.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/sys/dev/wi/if_wi_pci.c b/sys/dev/wi/if_wi_pci.c
index 43e19ee0e8a4..28e74940c222 100644
--- a/sys/dev/wi/if_wi_pci.c
+++ b/sys/dev/wi/if_wi_pci.c
@@ -96,12 +96,13 @@ static struct {
int bus_type;
char *desc;
} pci_ids[] = {
- {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA PCI WaveLAN"},
- {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301 PCI"},
- {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 PCI WaveLAN"},
- {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11 PCI"},
- {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Intersil Prism2.5 PCI"},
+ /* Sorted by description */
{0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect"},
+ {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 WaveLAN"},
+ {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Intersil Prism2.5"},
+ {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11"},
+ {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301"},
+ {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA WaveLAN"},
{0x111a, 0x1023, WI_BUS_PCI_PLX, "Siemens SpeedStream"},
{0, 0, 0, NULL}
};