mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
14 lines
339 B
C
14 lines
339 B
C
![]() |
#ifndef __ASM_SH_SCATTERLIST_H
|
||
|
#define __ASM_SH_SCATTERLIST_H
|
||
|
|
||
|
struct scatterlist {
|
||
|
struct page * page; /* Location for highmem page, if any */
|
||
|
unsigned int offset;/* for highmem, page offset */
|
||
|
dma_addr_t dma_address;
|
||
|
unsigned int length;
|
||
|
};
|
||
|
|
||
|
#define ISA_DMA_THRESHOLD (0x1fffffff)
|
||
|
|
||
|
#endif /* !(__ASM_SH_SCATTERLIST_H) */
|