mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
14 lines
250 B
C
14 lines
250 B
C
|
#ifndef _H8300_SCATTERLIST_H
|
||
|
#define _H8300_SCATTERLIST_H
|
||
|
|
||
|
struct scatterlist {
|
||
|
struct page *page;
|
||
|
unsigned int offset;
|
||
|
dma_addr_t dma_address;
|
||
|
unsigned int length;
|
||
|
};
|
||
|
|
||
|
#define ISA_DMA_THRESHOLD (0xffffffff)
|
||
|
|
||
|
#endif /* !(_H8300_SCATTERLIST_H) */
|