/alps/pcitool

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib/export.c

  • Committer: Suren A. Chilingaryan
  • Date: 2015-04-26 23:54:44 UTC
  • Revision ID: csa@suren.me-20150426235444-l9kvuvvfb2ovg8h1
Further adjustments to get ready for independent event plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#define _PCILIB_CONFIG_C
 
1
#define _PCILIB_EXPORT_C
2
2
 
3
3
#include <stdio.h>
4
4
 
5
5
#include "error.h"
6
 
#include "config.h"
 
6
#include "export.h"
7
7
 
8
8
#include "protocols/default.h"
9
9
 
20
20
#include "dma/nwl.h"
21
21
#include "dma/ipe.h"
22
22
 
23
 
 
 
23
/*
24
24
const pcilib_dma_description_t pcilib_ipedma = 
25
25
    { &ipe_dma_api, ipe_dma_banks, ipe_dma_registers, ipe_dma_engines, NULL, NULL, "ipedma", "DMA engine developed by M. Caselle" };
26
26
 
27
27
const pcilib_dma_description_t pcilib_nwldma =
28
28
    { &nwl_dma_api, nwl_dma_banks, nwl_dma_registers, NULL, NULL, NULL, "nwldma", "North West Logic DMA Engine" };
 
29
*/
29
30
 
30
31
const pcilib_dma_description_t pcilib_dma[] = { 
31
32
    { &ipe_dma_api, ipe_dma_banks, ipe_dma_registers, ipe_dma_engines, NULL, NULL, "ipedma", "DMA engine developed by M. Caselle" },