-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
asm-generic: remove ARCH_HAS_SG_CHAIN in scatterlist.h
There are more architectures that don't support ARCH_HAS_SG_CHAIN than those that support it. This removes removes ARCH_HAS_SG_CHAIN in asm-generic/scatterlist.h and lets arhictectures to define it. It's clearer than defining ARCH_HAS_SG_CHAIN asm-generic/scatterlist.h and undefing it in arhictectures that don't support it. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
- Loading branch information
FUJITA Tomonori
authored and
Linus Torvalds
committed
May 27, 2010
1 parent
48c7cf4
commit 1ef0437
Showing
8 changed files
with
12 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
#ifndef _ALPHA_SCATTERLIST_H | ||
#define _ALPHA_SCATTERLIST_H | ||
|
||
#define ISA_DMA_THRESHOLD (~0UL) | ||
|
||
#include <asm-generic/scatterlist.h> | ||
|
||
#undef ARCH_HAS_SG_CHAIN | ||
#define ISA_DMA_THRESHOLD (~0UL) | ||
|
||
#endif /* !(_ALPHA_SCATTERLIST_H) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#define ISA_DMA_THRESHOLD (~0UL) | ||
|
||
#include <asm-generic/scatterlist.h> | ||
|
||
#define ISA_DMA_THRESHOLD (~0UL) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
#ifndef _SPARC_SCATTERLIST_H | ||
#define _SPARC_SCATTERLIST_H | ||
|
||
#define ISA_DMA_THRESHOLD (~0UL) | ||
|
||
#include <asm-generic/scatterlist.h> | ||
|
||
#define ISA_DMA_THRESHOLD (~0UL) | ||
#define ARCH_HAS_SG_CHAIN | ||
|
||
#endif /* !(_SPARC_SCATTERLIST_H) */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
#ifndef _ASM_X86_SCATTERLIST_H | ||
#define _ASM_X86_SCATTERLIST_H | ||
|
||
#define ISA_DMA_THRESHOLD (0x00ffffff) | ||
|
||
#include <asm-generic/scatterlist.h> | ||
|
||
#define ISA_DMA_THRESHOLD (0x00ffffff) | ||
#define ARCH_HAS_SG_CHAIN | ||
|
||
#endif /* _ASM_X86_SCATTERLIST_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters