diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2015-04-27 01:54:44 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2015-04-27 01:54:44 +0200 |
commit | 8d3ad26d8331c43659d0d4e77e8a50fbc3cfc1e4 (patch) | |
tree | 30c74c76115279cdc15437a07fabd8347ac1fdfd /pcilib/config.c | |
parent | dcd8ad63316eac672492bc18112bbbb52811c3fc (diff) | |
download | pcitool-8d3ad26d8331c43659d0d4e77e8a50fbc3cfc1e4.tar.gz pcitool-8d3ad26d8331c43659d0d4e77e8a50fbc3cfc1e4.tar.bz2 pcitool-8d3ad26d8331c43659d0d4e77e8a50fbc3cfc1e4.tar.xz pcitool-8d3ad26d8331c43659d0d4e77e8a50fbc3cfc1e4.zip |
Further adjustments to get ready for independent event plugins
Diffstat (limited to 'pcilib/config.c')
-rw-r--r-- | pcilib/config.c | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/pcilib/config.c b/pcilib/config.c deleted file mode 100644 index 21a0e53..0000000 --- a/pcilib/config.c +++ /dev/null @@ -1,37 +0,0 @@ -#define _PCILIB_CONFIG_C - -#include <stdio.h> - -#include "error.h" -#include "config.h" - -#include "protocols/default.h" - - -void (*pcilib_error)(const char *msg, ...) = pcilib_print_error; -void (*pcilib_warning)(const char *msg, ...) = pcilib_print_error; - - -const pcilib_register_protocol_description_t pcilib_protocols[] = { - { PCILIB_REGISTER_PROTOCOL_DEFAULT, &pcilib_default_protocol_api, NULL, NULL, "default", "" }, - { 0 } -}; - -#include "dma/nwl.h" -#include "dma/ipe.h" - - -const pcilib_dma_description_t pcilib_ipedma = - { &ipe_dma_api, ipe_dma_banks, ipe_dma_registers, ipe_dma_engines, NULL, NULL, "ipedma", "DMA engine developed by M. Caselle" }; - -const pcilib_dma_description_t pcilib_nwldma = - { &nwl_dma_api, nwl_dma_banks, nwl_dma_registers, NULL, NULL, NULL, "nwldma", "North West Logic DMA Engine" }; - -const pcilib_dma_description_t pcilib_dma[] = { - { &ipe_dma_api, ipe_dma_banks, ipe_dma_registers, ipe_dma_engines, NULL, NULL, "ipedma", "DMA engine developed by M. Caselle" }, - { &nwl_dma_api, nwl_dma_banks, nwl_dma_registers, NULL, NULL, NULL, "nwldma", "North West Logic DMA Engine" }, - { &nwl_dma_api, nwl_dma_banks, nwl_dma_registers, NULL, "ipecamera", NULL, "nwldma-ipe", "North West Logic DMA Engine" }, - { 0 } -}; - - |