/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 driver/common.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:
11
11
/* This list keeps references to the allocated kernel buffers */
12
12
typedef struct {
13
13
        int id;
 
14
        enum dma_data_direction direction;
 
15
        
14
16
        struct list_head list;
15
17
        dma_addr_t dma_handle;
16
18
        unsigned long cpua;