diff options
Diffstat (limited to 'include/asm-sparc/scatterlist.h')
-rw-r--r-- | include/asm-sparc/scatterlist.h | 32 |
1 files changed, 7 insertions, 25 deletions
diff --git a/include/asm-sparc/scatterlist.h b/include/asm-sparc/scatterlist.h index c82609ca1d0f..b1a0e316c2b6 100644 --- a/include/asm-sparc/scatterlist.h +++ b/include/asm-sparc/scatterlist.h | |||
@@ -1,26 +1,8 @@ | |||
1 | #ifndef _SPARC_SCATTERLIST_H | 1 | #ifndef ___ASM_SPARC_SCATTERLIST_H |
2 | #define _SPARC_SCATTERLIST_H | 2 | #define ___ASM_SPARC_SCATTERLIST_H |
3 | 3 | #if defined(__sparc__) && defined(__arch64__) | |
4 | #include <linux/types.h> | 4 | #include <asm-sparc/scatterlist_64.h> |
5 | 5 | #else | |
6 | struct scatterlist { | 6 | #include <asm-sparc/scatterlist_32.h> |
7 | #ifdef CONFIG_DEBUG_SG | 7 | #endif |
8 | unsigned long sg_magic; | ||
9 | #endif | 8 | #endif |
10 | unsigned long page_link; | ||
11 | unsigned int offset; | ||
12 | |||
13 | unsigned int length; | ||
14 | |||
15 | __u32 dvma_address; /* A place to hang host-specific addresses at. */ | ||
16 | __u32 dvma_length; | ||
17 | }; | ||
18 | |||
19 | #define sg_dma_address(sg) ((sg)->dvma_address) | ||
20 | #define sg_dma_len(sg) ((sg)->dvma_length) | ||
21 | |||
22 | #define ISA_DMA_THRESHOLD (~0UL) | ||
23 | |||
24 | #define ARCH_HAS_SG_CHAIN | ||
25 | |||
26 | #endif /* !(_SPARC_SCATTERLIST_H) */ | ||