more changes on original files
[linux-2.4.git] / include / asm-mips / scatterlist.h
1 #ifndef __ASM_SCATTERLIST_H
2 #define __ASM_SCATTERLIST_H
3
4 struct scatterlist {
5         char * address;         /* Location data is to be transferred to,
6                                    NULL for highmem page */
7         struct page * page;     /* Location for highmem page, if any */
8         unsigned int offset;
9         dma_addr_t dma_address;
10         unsigned int length;
11 };
12
13 #define ISA_DMA_THRESHOLD (0x00ffffff)
14
15 #endif /* __ASM_SCATTERLIST_H */