scatterlist.h 335 B

123456789101112131415161718
  1. #ifndef _H8300_SCATTERLIST_H
  2. #define _H8300_SCATTERLIST_H
  3. #include <asm/types.h>
  4. struct scatterlist {
  5. #ifdef CONFIG_DEBUG_SG
  6. unsigned long sg_magic;
  7. #endif
  8. unsigned long page_link;
  9. unsigned int offset;
  10. dma_addr_t dma_address;
  11. unsigned int length;
  12. };
  13. #define ISA_DMA_THRESHOLD (0xffffffff)
  14. #endif /* !(_H8300_SCATTERLIST_H) */