diff options
author | imp <imp@FreeBSD.org> | 2002-04-28 02:04:28 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-04-28 02:04:28 +0000 |
commit | 60035f87f39b711bd6c544d36b3c1fda95a22034 (patch) | |
tree | 0b3882675c636be4643c5d80a2296041f00449a7 | |
parent | a8a9a0dc87235ce7d943afde5e92dcc34fb8eac1 (diff) | |
download | FreeBSD-src-60035f87f39b711bd6c544d36b3c1fda95a22034.zip FreeBSD-src-60035f87f39b711bd6c544d36b3c1fda95a22034.tar.gz |
Alphabetize descriptions and remove the "PCI" from the desciptions.
Suggested by: brooks
-rw-r--r-- | sys/dev/wi/if_wi_pci.c | 11 |
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 43e19ee..28e7494 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} }; |