summaryrefslogtreecommitdiff
path: root/include/asm-h8300/scatterlist.h
blob: 7627f0cd1a2f4f559514bbfe3f2dfd044b4a18f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _H8300_SCATTERLIST_H
#define _H8300_SCATTERLIST_H

struct scatterlist {
	struct page	*page;
	unsigned int	offset;
	dma_addr_t	dma_address;
	unsigned int	length;
};

#define ISA_DMA_THRESHOLD	(0xffffffff)

#endif /* !(_H8300_SCATTERLIST_H) */