diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-03-29 21:28:23 +0200 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-03-29 21:28:23 +0200 |
commit | c4ddb8c11aadc695940715be3420c1a97364935a (patch) | |
tree | b59ecd8f13880893098e539fab5406f4b8357b0c /com32/include/sys | |
parent | fdc0486c5d47ca692c755b8a03550e42f5f14257 (diff) | |
download | syslinux-3.74-pre13.tar.gz syslinux-3.74-pre13.tar.xz syslinux-3.74-pre13.zip |
pci: Rename get_module_name_from_pci_idssyslinux-3.74-pre13syslinux-3.74-pre12
Impact: none
Rename get_module_name_from_pci_ids to get_module_name_from_pcimap since
the module names are read from the modules.pcimap and not pci.ids file.
Signed-off-by: Sebastian Herbszt (herbszt@gmx.de)
Diffstat (limited to 'com32/include/sys')
-rw-r--r-- | com32/include/sys/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/include/sys/pci.h b/com32/include/sys/pci.h index 18e97548..2e1871ed 100644 --- a/com32/include/sys/pci.h +++ b/com32/include/sys/pci.h @@ -134,7 +134,7 @@ void free_pci_domain(struct pci_domain *domain); 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, char *pciids_path); -int get_module_name_from_pci_ids(struct pci_domain *pci_domain, char *modules_pcimap_path); +int get_module_name_from_pcimap(struct pci_domain *pci_domain, char *modules_pcimap_path); int get_class_name_from_pci_ids(struct pci_domain *pci_domain, char *pciids_path); void gather_additional_pci_config(struct pci_domain *domain); #endif /* _SYS_PCI_H */ |