aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-h8300/scatterlist.h
blob: 7e41983d6b261ff182e7e77b0b45fa9287d33345 (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 {
	unsigned long	page_link;
	unsigned int	offset;
	dma_addr_t	dma_address;
	unsigned int	length;
};

#define ISA_DMA_THRESHOLD	(0xffffffff)

#endif /* !(_H8300_SCATTERLIST_H) */