This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / drivers / xen / pciback / conf_space_capability.h
1 /*
2  * PCI Backend - Data structures for special overlays for structures on
3  *               the capability list.
4  *
5  * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
6  */
7
8 #ifndef __PCIBACK_CONFIG_CAPABILITY_H__
9 #define __PCIBACK_CONFIG_CAPABILITY_H__
10
11 #include <linux/pci.h>
12 #include <linux/list.h>
13
14 struct pciback_config_capability {
15         struct list_head cap_list;
16
17         int capability;
18
19         /* If the device has the capability found above, add these fields */
20         struct config_field *fields;
21 };
22
23 #endif