diff options
| author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2010-05-26 17:44:34 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-27 12:12:54 -0400 |
| commit | 48c7cf4797d04b3ffcb060fa64c3c500b7371e8b (patch) | |
| tree | 1071bc91768ed32ed7019c1264ee4bc3c6fb9cec | |
| parent | e32205eb5818ab53dbe0ffe6c6fbdaa9af83de72 (diff) | |
alpha: use asm-generic/scatterlist.h
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Acked-by: Matt Turner <mattst88@gmail.com>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | arch/alpha/Kconfig | 3 | ||||
| -rw-r--r-- | arch/alpha/include/asm/scatterlist.h | 21 |
2 files changed, 6 insertions, 18 deletions
diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index 24efdfe277fc..3e2e540a0f2a 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig | |||
| @@ -61,6 +61,9 @@ config ZONE_DMA | |||
| 61 | config NEED_DMA_MAP_STATE | 61 | config NEED_DMA_MAP_STATE |
| 62 | def_bool y | 62 | def_bool y |
| 63 | 63 | ||
| 64 | config NEED_SG_DMA_LENGTH | ||
| 65 | def_bool y | ||
| 66 | |||
| 64 | config GENERIC_ISA_DMA | 67 | config GENERIC_ISA_DMA |
| 65 | bool | 68 | bool |
| 66 | default y | 69 | default y |
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 | |||
| 7 | struct 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) */ |
