cleanup
[linux-2.4.git] / include / asm-s390x / scatterlist.h
1 #ifndef _ASMS390X_SCATTERLIST_H
2 #define _ASMS390X_SCATTERLIST_H
3
4 struct scatterlist {
5     /* This will disappear in 2.5.x */
6     char *address;
7
8     /* These two are only valid if ADDRESS member of this
9      * struct is NULL.
10      */
11     struct page *page;
12     unsigned int offset;
13
14     unsigned int length;
15 };
16
17 #define ISA_DMA_THRESHOLD (0xffffffffffffffff)
18
19 #endif /* _ASMS390X_SCATTERLIST_H */