summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/scatterlist.h
blob: 5c6b01c99fae93653d0c5cfbfbd169f33a5ddb51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifdef __KERNEL__
#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) */
#endif /* __KERNEL__ */