diff options
author | imp <imp@FreeBSD.org> | 2005-09-13 19:07:00 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2005-09-13 19:07:00 +0000 |
commit | ad73a2c0e1f5112c666387cc422dbcd47de0f99e (patch) | |
tree | cbd8675018cd2f0bffaa6c8c0af3e88d07ebfe37 | |
parent | 3b28b9c8194d24580bd1bf543ea157cec83826d8 (diff) | |
download | FreeBSD-src-ad73a2c0e1f5112c666387cc422dbcd47de0f99e.zip FreeBSD-src-ad73a2c0e1f5112c666387cc422dbcd47de0f99e.tar.gz |
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.
-rw-r--r-- | sys/dev/ed/if_ed_pci.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/ed/if_ed_pci.c b/sys/dev/ed/if_ed_pci.c index c9722c0..a969e13 100644 --- a/sys/dev/ed/if_ed_pci.c +++ b/sys/dev/ed/if_ed_pci.c @@ -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); |