diff options
author | Alan Brault <alan.brault@incruentatus.net> | 2010-12-07 18:46:54 -0500 |
---|---|---|
committer | Alan Brault <alan.brault@incruentatus.net> | 2010-12-07 18:46:54 -0500 |
commit | 42f22b3aa32461423413aaee8335d420cdd484dd (patch) | |
tree | a4a500bf31bd583255a27e4ab8b82e94bdbc80a4 /sysfsutils/cmd/names.h | |
parent | 78d2728b5b5a50cb72db8d14b46cf86284aea03b (diff) | |
download | NetNuke2-42f22b3aa32461423413aaee8335d420cdd484dd.tar.gz |
Remove sysfsutils directory, no longer required
Diffstat (limited to 'sysfsutils/cmd/names.h')
-rw-r--r-- | sysfsutils/cmd/names.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/sysfsutils/cmd/names.h b/sysfsutils/cmd/names.h deleted file mode 100644 index dc32e9f..0000000 --- a/sysfsutils/cmd/names.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * $Id: names.h,v 1.2.2.1 2005/04/06 23:18:11 stekloff Exp $ - * - * The PCI Library - * - * Copyright (c) 1997--2002 Martin Mares <mj@ucw.cz> - * - * Can be freely distributed and used under the terms of the GNU GPL. - */ - -#ifndef _NAMES_H_ -#define _NAMES_H_ - -#define PCI_LOOKUP_VENDOR 1 -#define PCI_LOOKUP_DEVICE 2 -#define PCI_LOOKUP_CLASS 4 -#define PCI_LOOKUP_SUBSYSTEM 8 -#define PCI_LOOKUP_PROGIF 16 -#define PCI_LOOKUP_NUMERIC 0x10000 - -#define PCI_VENDOR_ID 0x00 -#define PCI_DEVICE_ID 0x02 - -struct pci_access { - unsigned int numeric_ids; - unsigned char *pci_id_file_name; - unsigned char *nl_list; - struct nl_entry **nl_hash; -}; - -extern unsigned char *pci_lookup_name(struct pci_access *a, unsigned char *buf, - int size, int flags, unsigned int arg1, unsigned int arg2, - unsigned int arg3, unsigned int arg4); -extern void pci_free_name_list(struct pci_access *a); - -#endif /* _NAMES_H_ */ |