diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-04-01 16:25:56 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-04-01 16:25:56 -0700 |
commit | 83ce450186a2b8ce9e7a296bf8d7dbd903f46015 (patch) | |
tree | 78662694813556e1ccd85fbd4a3e00b7e6596400 /com32/include/sys | |
parent | 48f62dd984768c64a4c481bf41578cb8a0e63c49 (diff) | |
download | syslinux-83ce450186a2b8ce9e7a296bf8d7dbd903f46015.tar.gz syslinux-83ce450186a2b8ce9e7a296bf8d7dbd903f46015.tar.xz syslinux-83ce450186a2b8ce9e7a296bf8d7dbd903f46015.zip |
Remove useless attempt at reading pci.ids
We try to read pci.ids over and over to get human-readable strings,
and reserve enormous amounts of memory for them. We don't ever
actually use them. If we want to have a PCI database we should do
that elsewhere, and better.
Diffstat (limited to 'com32/include/sys')
-rw-r--r-- | com32/include/sys/pci.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/com32/include/sys/pci.h b/com32/include/sys/pci.h index e471faa6..b511477b 100644 --- a/com32/include/sys/pci.h +++ b/com32/include/sys/pci.h @@ -12,9 +12,7 @@ typedef uint32_t pciaddr_t; typedef struct { - char vendor_name[MAX_VENDOR_NAME_SIZE]; uint16_t vendor; - char product_name[MAX_PRODUCT_NAME_SIZE]; uint16_t product; uint16_t sub_vendor; uint16_t sub_product; |