aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-m68knommu/scatterlist.h
blob: 230b8d56d17fb04f6ebd0bdfaa6376e79036128f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _M68KNOMMU_SCATTERLIST_H
#define _M68KNOMMU_SCATTERLIST_H

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

#define ISA_DMA_THRESHOLD	(0xffffffff)

#endif /* !(_M68KNOMMU_SCATTERLIST_H) */