scatterlist.h 415 B

12345678910111213141516171819
  1. #ifndef _M68K_SCATTERLIST_H
  2. #define _M68K_SCATTERLIST_H
  3. struct scatterlist {
  4. /* These two are only valid if ADDRESS member of this
  5. * struct is NULL.
  6. */
  7. struct page *page;
  8. unsigned int offset;
  9. unsigned int length;
  10. __u32 dvma_address; /* A place to hang host-specific addresses at. */
  11. };
  12. /* This is bogus and should go away. */
  13. #define ISA_DMA_THRESHOLD (0x00ffffff)
  14. #endif /* !(_M68K_SCATTERLIST_H) */