MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / asm-m68knommu / scatterlist.h
blob2085d6ff8782f3eb31473fc8ee31c0c56b1cad2f
1 #ifndef _M68KNOMMU_SCATTERLIST_H
2 #define _M68KNOMMU_SCATTERLIST_H
4 #include <linux/mm.h>
6 struct scatterlist {
7 struct page *page;
8 unsigned int offset;
9 dma_addr_t dma_address;
10 unsigned int length;
13 #define sg_address(sg) (page_address((sg)->page) + (sg)->offset)
14 #define sg_dma_address(sg) ((sg)->dma_address)
15 #define sg_dma_len(sg) ((sg)->length)
17 #define ISA_DMA_THRESHOLD (0xffffffff)
19 #endif /* !(_M68KNOMMU_SCATTERLIST_H) */