-
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.
yaml --- r: 184608 b: refs/heads/master c: a6d468d h: refs/heads/master v: v3
- Loading branch information
FUJITA Tomonori
authored and
David S. Miller
committed
Feb 26, 2010
1 parent
873bb8d
commit 12e07ca
Showing
2 changed files
with
2 additions
and
21 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,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 2ef2d7477549c85b84b24b155baa798650cbf90b | ||
refs/heads/master: a6d468d05356655cdc11bb2cfec4e64bcef6ad0a |
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,27 +1,8 @@ | ||
#ifndef _SPARC_SCATTERLIST_H | ||
#define _SPARC_SCATTERLIST_H | ||
|
||
#include <asm/page.h> | ||
#include <asm/types.h> | ||
|
||
struct scatterlist { | ||
#ifdef CONFIG_DEBUG_SG | ||
unsigned long sg_magic; | ||
#endif | ||
unsigned long page_link; | ||
unsigned int offset; | ||
|
||
unsigned int length; | ||
|
||
dma_addr_t dma_address; | ||
__u32 dma_length; | ||
}; | ||
|
||
#define sg_dma_address(sg) ((sg)->dma_address) | ||
#define sg_dma_len(sg) ((sg)->dma_length) | ||
|
||
#define ISA_DMA_THRESHOLD (~0UL) | ||
|
||
#define ARCH_HAS_SG_CHAIN | ||
#include <asm-generic/scatterlist.h> | ||
|
||
#endif /* !(_SPARC_SCATTERLIST_H) */ |