Use smaller names. The "NE2000 PCI Ethernet" is largerly redundant

with edX at pciY.  This removes 8*22 bytes from the strings. Not a
huge win, but a cheap one.
This commit is contained in:
Warner Losh 2005-09-13 19:07:00 +00:00
parent af2b8e58cc
commit c3ee3aa526

View File

@ -48,15 +48,15 @@ static struct _pcsid
const char *desc;
} pci_ids[] =
{
{ 0x802910ec, "NE2000 PCI Ethernet (RealTek 8029)" },
{ 0x50004a14, "NE2000 PCI Ethernet (NetVin 5000)" },
{ 0x09401050, "NE2000 PCI Ethernet (ProLAN)" },
{ 0x140111f6, "NE2000 PCI Ethernet (Compex)" },
{ 0x30008e2e, "NE2000 PCI Ethernet (KTI)" },
{ 0x19808c4a, "NE2000 PCI Ethernet (Winbond W89C940)" },
{ 0x0e3410bd, "NE2000 PCI Ethernet (Surecom NE-34)" },
{ 0x09261106, "NE2000 PCI Ethernet (VIA VT86C926)" },
{ 0x00000000, NULL }
{ 0x802910ec, "RealTek 8029" },
{ 0x50004a14, "NetVin 5000" },
{ 0x09401050, "ProLAN" },
{ 0x140111f6, "Compex" },
{ 0x30008e2e, "KTI" },
{ 0x19808c4a, "Winbond W89C940" },
{ 0x0e3410bd, "Surecom NE-34" },
{ 0x09261106, "VIA VT86C926" },
{ 0x00000000, NULL }
};
static int ed_pci_probe(device_t);