/* * PCI Backend - Data structures for special overlays for structures on * the capability list. * * Author: Ryan Wilson */ #ifndef __PCIBACK_CONFIG_CAPABILITY_H__ #define __PCIBACK_CONFIG_CAPABILITY_H__ #include #include struct pciback_config_capability { struct list_head cap_list; int capability; /* If the device has the capability found above, add these fields */ struct config_field *fields; }; #endif