aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-h8300/scatterlist.h
blob: 985fdf54eacad5c49d39f5082b9807456f18603b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _H8300_SCATTERLIST_H
#define _H8300_SCATTERLIST_H

#include <asm/types.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) */