/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to pcilib.h

  • Committer: Suren A. Chilingaryan
  • Date: 2011-10-23 00:43:20 UTC
  • Revision ID: csa@dside.dyndns.org-20111023004320-523yoab3y82nketc
Properly perform synchronization of DMA buffers

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
} pcilib_irq_type_t;
162
162
 
163
163
typedef enum {
164
 
    PCILIB_DMA_FROM_DEVICE = 1,
165
 
    PCILIB_DMA_TO_DEVICE = 2,
 
164
    PCILIB_DMA_TO_DEVICE = 1,
 
165
    PCILIB_DMA_FROM_DEVICE = 2,
166
166
    PCILIB_DMA_BIDIRECTIONAL = 3
167
167
} pcilib_dma_direction_t;
168
168