1 #ifdef __KERNEL__
2 #ifndef _PPC_SCATTERLIST_H
3 #define _PPC_SCATTERLIST_H
4
5 #include <asm/dma.h>
6
7 struct scatterlist {
8 char * address; /* Location data is to be transferred to */
9 char * alt_address; /* Location of actual if address is a
10 * dma indirect buffer. NULL otherwise */
11 unsigned int length;
12 };
13
14
15 #endif /* !(_PPC_SCATTERLIST_H) */
16 #endif /* __KERNEL__ */
17