diff options
Diffstat (limited to 'pcilib/config.h')
-rw-r--r-- | pcilib/config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pcilib/config.h b/pcilib/config.h new file mode 100644 index 0000000..710bff8 --- /dev/null +++ b/pcilib/config.h @@ -0,0 +1,17 @@ +#ifndef _PCILIB_CONFIG_H +#define _PCILIB_CONFIG_H + + +#include <pcilib/register.h> +#include <pcilib/bank.h> +#include <pcilib/dma.h> + +extern const pcilib_register_protocol_description_t pcilib_protocols[]; +extern const pcilib_dma_description_t pcilib_dma[]; + +extern const pcilib_register_protocol_api_description_t pcilib_default_protocol_api; + +extern const pcilib_dma_description_t pcilib_ipedma; +extern const pcilib_dma_description_t pcilib_nwldma; + +#endif /* _PCILIB_CONFIG_H */ |