aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/include/asm/scatterlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/alpha/include/asm/scatterlist.h')
-rw-r--r--arch/alpha/include/asm/scatterlist.h21
1 files changed, 3 insertions, 18 deletions
diff --git a/arch/alpha/include/asm/scatterlist.h b/arch/alpha/include/asm/scatterlist.h
index 440747ca6349..85a0ef25516b 100644
--- a/arch/alpha/include/asm/scatterlist.h
+++ b/arch/alpha/include/asm/scatterlist.h
@@ -1,25 +1,10 @@
1#ifndef _ALPHA_SCATTERLIST_H 1#ifndef _ALPHA_SCATTERLIST_H
2#define _ALPHA_SCATTERLIST_H 2#define _ALPHA_SCATTERLIST_H
3 3
4#include <asm/page.h> 4#define ISA_DMA_THRESHOLD (~0UL)
5#include <asm/types.h>
6
7struct scatterlist {
8#ifdef CONFIG_DEBUG_SG
9 unsigned long sg_magic;
10#endif
11 unsigned long page_link;
12 unsigned int offset;
13
14 unsigned int length;
15
16 dma_addr_t dma_address;
17 __u32 dma_length;
18};
19 5
20#define sg_dma_address(sg) ((sg)->dma_address) 6#include <asm-generic/scatterlist.h>
21#define sg_dma_len(sg) ((sg)->dma_length)
22 7
23#define ISA_DMA_THRESHOLD (~0UL) 8#undef ARCH_HAS_SG_CHAIN
24 9
25#endif /* !(_ALPHA_SCATTERLIST_H) */ 10#endif /* !(_ALPHA_SCATTERLIST_H) */