2005-04-17 00:20:36 +02:00
|
|
|
#ifndef _M68K_SCATTERLIST_H
|
|
|
|
#define _M68K_SCATTERLIST_H
|
|
|
|
|
2007-05-09 05:27:03 +02:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
struct scatterlist {
|
2007-10-22 20:01:06 +02:00
|
|
|
#ifdef CONFIG_DEBUG_SG
|
|
|
|
unsigned long sg_magic;
|
|
|
|
#endif
|
2007-10-22 19:57:20 +02:00
|
|
|
unsigned long page_link;
|
2005-04-17 00:20:36 +02:00
|
|
|
unsigned int offset;
|
|
|
|
unsigned int length;
|
|
|
|
|
2006-06-25 14:46:56 +02:00
|
|
|
__u32 dma_address; /* A place to hang host-specific addresses at. */
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* This is bogus and should go away. */
|
|
|
|
#define ISA_DMA_THRESHOLD (0x00ffffff)
|
|
|
|
|
2006-06-25 14:46:56 +02:00
|
|
|
#define sg_dma_address(sg) ((sg)->dma_address)
|
|
|
|
#define sg_dma_len(sg) ((sg)->length)
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif /* !(_M68K_SCATTERLIST_H) */
|