diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-02-10 21:08:24 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-02-25 20:58:39 -0800 |
commit | 16e8768b804e8468563349f892ed99e28cbd295c (patch) | |
tree | c5e52b04863a97151d926e438e578db0a946d40a /com32/include/sys | |
parent | 95103be9c176b9588905543df5efe87d93be12b5 (diff) | |
download | syslinux-16e8768b804e8468563349f892ed99e28cbd295c.tar.gz syslinux-16e8768b804e8468563349f892ed99e28cbd295c.tar.xz syslinux-16e8768b804e8468563349f892ed99e28cbd295c.zip |
hdt: Adding get_class_name_from_pci_ids to grab class name from the pciids
Diffstat (limited to 'com32/include/sys')
-rw-r--r-- | com32/include/sys/pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/com32/include/sys/pci.h b/com32/include/sys/pci.h index 1de095af..8d71a359 100644 --- a/com32/include/sys/pci.h +++ b/com32/include/sys/pci.h @@ -16,6 +16,7 @@ struct pci_dev_info { char vendor_name[256]; char product_name[256]; char linux_kernel_module[64]; + char class_name[256]; }; /* PCI device (really, function) */ @@ -119,5 +120,6 @@ struct match * find_pci_device(const struct pci_domain *pci_domain, struct match *list); int get_name_from_pci_ids(struct pci_domain *pci_domain); int get_module_name_from_pci_ids(struct pci_domain *pci_domain); +int get_class_name_from_pci_ids(struct pci_domain *pci_domain); #endif /* _SYS_PCI_H */ |