summaryrefslogtreecommitdiffstats
path: root/libldetect.h
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-02-26 13:53:41 +0000
committerThierry Vignaud <tv@mandriva.org>2007-02-26 13:53:41 +0000
commit3925c2dfa1c3d3102b0100dd402550194617a53e (patch)
tree525e95ff0cae163b2b8fa16a71e71b6cc2d47332 /libldetect.h
parente4fb8753d690323947e5bf7171547e958ba09103 (diff)
downloadldetect-3925c2dfa1c3d3102b0100dd402550194617a53e.tar
ldetect-3925c2dfa1c3d3102b0100dd402550194617a53e.tar.gz
ldetect-3925c2dfa1c3d3102b0100dd402550194617a53e.tar.bz2
ldetect-3925c2dfa1c3d3102b0100dd402550194617a53e.tar.xz
ldetect-3925c2dfa1c3d3102b0100dd402550194617a53e.zip
(struct pciusb_entry) rename class_ as class_id
Diffstat (limited to 'libldetect.h')
-rw-r--r--libldetect.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libldetect.h b/libldetect.h
index c70bf5a..c954da0 100644
--- a/libldetect.h
+++ b/libldetect.h
@@ -10,7 +10,7 @@ struct pciusb_entry {
unsigned short subvendor; /* 0xffff if not probe_type'd or no subid */
unsigned short subdevice; /* 0xffff if not probe_type'd or no subid */
- unsigned long class_; /* 0 if not probe_type'd */
+ unsigned long class_id; /* 0 if not probe_type'd */
unsigned short pci_bus; /* pci bus id 8 bits wide */
unsigned short pci_device; /* pci device id 5 bits wide */
@@ -32,7 +32,7 @@ extern void pciusb_free(struct pciusb_entries *entries);
/* pci ************************************************************************/
/******************************************************************************/
extern struct pciusb_entries pci_probe(void);
-extern const char *pci_class2text(unsigned long class_);
+extern const char *pci_class2text(unsigned long class_id);
extern char *proc_pci_path;
/******************************************************************************/
@@ -46,7 +46,7 @@ struct usb_class_text {
const char *usb_prot_text;
};
-extern struct usb_class_text usb_class2text(unsigned long class_);
+extern struct usb_class_text usb_class2text(unsigned long class_id);
extern char *proc_usb_path;