summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/scatterlist.h
blob: f81590716cf1ddc9290eb48fe5c3bc21391d3a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _PPC_SCATTERLIST_H
#define _PPC_SCATTERLIST_H

#include <asm/dma.h>

struct scatterlist {
    char *  address;    /* Location data is to be transferred to */
    char * alt_address; /* Location of actual if address is a 
			 * dma indirect buffer.  NULL otherwise */
    unsigned int length;
};


#endif /* !(_PPC_SCATTERLIST_H) */