1 #ifndef _M68K_SCATTERLIST_H
2 #define _M68K_SCATTERLIST_H
3
4 struct scatterlist {
5 char * address; /* Location data is to be transferred to */
6 char * alt_address; /* Location of actual if address is a
7 * dma indirect buffer. NULL otherwise */
8 unsigned int length;
9 unsigned long dvma_address;
10 };
11
12 struct mmu_sglist {
13 char *addr;
14 char *__dont_touch;
15 unsigned int len;
16 unsigned long dvma_addr;
17 };
18
19 /* This is bogus and should go away. */
20 #define ISA_DMA_THRESHOLD (0x00ffffff)
21
22 #endif /* !(_M68K_SCATTERLIST_H) */
23
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.