diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2010-02-25 19:43:51 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2010-02-26 14:14:24 -0500 |
commit | 3a095a97e17897e8a8d7c3c995cb206f801c2477 (patch) | |
tree | fe0874033e51e3c9392d020179e5109186bc227e /arch/ia64 | |
parent | 60b341b778cc2929df16c0a504c91621b3c6a4ad (diff) |
[IA64] use asm-generic/scatterlist.h
IA64's scatterlist structure is identical to the generic one.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/include/asm/scatterlist.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/arch/ia64/include/asm/scatterlist.h b/arch/ia64/include/asm/scatterlist.h index d6f57874041d..d8e98961dec7 100644 --- a/arch/ia64/include/asm/scatterlist.h +++ b/arch/ia64/include/asm/scatterlist.h | |||
@@ -2,25 +2,6 @@ | |||
2 | #define _ASM_IA64_SCATTERLIST_H | 2 | #define _ASM_IA64_SCATTERLIST_H |
3 | 3 | ||
4 | /* | 4 | /* |
5 | * Modified 1998-1999, 2001-2002, 2004 | ||
6 | * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co | ||
7 | */ | ||
8 | |||
9 | #include <asm/types.h> | ||
10 | |||
11 | struct scatterlist { | ||
12 | #ifdef CONFIG_DEBUG_SG | ||
13 | unsigned long sg_magic; | ||
14 | #endif | ||
15 | unsigned long page_link; | ||
16 | unsigned int offset; | ||
17 | unsigned int length; /* buffer length */ | ||
18 | |||
19 | dma_addr_t dma_address; | ||
20 | unsigned int dma_length; | ||
21 | }; | ||
22 | |||
23 | /* | ||
24 | * It used to be that ISA_DMA_THRESHOLD had something to do with the | 5 | * It used to be that ISA_DMA_THRESHOLD had something to do with the |
25 | * DMA-limits of ISA-devices. Nowadays, its only remaining use (apart | 6 | * DMA-limits of ISA-devices. Nowadays, its only remaining use (apart |
26 | * from the aha1542.c driver, which isn't 64-bit clean anyhow) is to | 7 | * from the aha1542.c driver, which isn't 64-bit clean anyhow) is to |
@@ -30,9 +11,6 @@ struct scatterlist { | |||
30 | */ | 11 | */ |
31 | #define ISA_DMA_THRESHOLD 0xffffffff | 12 | #define ISA_DMA_THRESHOLD 0xffffffff |
32 | 13 | ||
33 | #define sg_dma_len(sg) ((sg)->dma_length) | 14 | #include <asm-generic/scatterlist.h> |
34 | #define sg_dma_address(sg) ((sg)->dma_address) | ||
35 | |||
36 | #define ARCH_HAS_SG_CHAIN | ||
37 | 15 | ||
38 | #endif /* _ASM_IA64_SCATTERLIST_H */ | 16 | #endif /* _ASM_IA64_SCATTERLIST_H */ |