···22#define _M68K_SCATTERLIST_H3344struct scatterlist {55- /* These two are only valid if ADDRESS member of this66- * struct is NULL.77- */85 struct page *page;96 unsigned int offset;1010-117 unsigned int length;1281313- __u32 dvma_address; /* A place to hang host-specific addresses at. */99+ __u32 dma_address; /* A place to hang host-specific addresses at. */1410};15111612/* This is bogus and should go away. */1713#define ISA_DMA_THRESHOLD (0x00ffffff)1414+1515+#define sg_dma_address(sg) ((sg)->dma_address)1616+#define sg_dma_len(sg) ((sg)->length)18171918#endif /* !(_M68K_SCATTERLIST_H) */