summaryrefslogtreecommitdiffstats
path: root/include/asm-ia64/scatterlist.h
blob: 5a119b6c8e1fb94a1512407f7a2bc7f900a967cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _ASM_IA64_SCATTERLIST_H
#define _ASM_IA64_SCATTERLIST_H

/*
 * Copyright (C) 1998, 1999 Hewlett-Packard Co
 * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
 */

struct scatterlist {
	char *address;		/* location data is to be transferred to */
	/*
	 * Location of actual buffer if ADDRESS points to a DMA
	 * indirection buffer, NULL otherwise:
	 */
	char *alt_address;
	unsigned int length;	/* buffer length */
};

#define ISA_DMA_THRESHOLD	(~0UL)

#endif /* _ASM_IA64_SCATTERLIST_H */