diff options
Diffstat (limited to 'include/asm-h8300/scatterlist.h')
-rw-r--r-- | include/asm-h8300/scatterlist.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-h8300/scatterlist.h b/include/asm-h8300/scatterlist.h new file mode 100644 index 00000000000..7627f0cd1a2 --- /dev/null +++ b/include/asm-h8300/scatterlist.h @@ -0,0 +1,13 @@ +#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) */ |