mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-07 05:04:04 +08:00
14 lines
250 B
C
14 lines
250 B
C
|
#ifndef _H8300_SCATTERLIST_H
|
||
|
#define _H8300_SCATTERLIST_H
|
||
|
|
||
|
struct scatterlist {
|
||
|
struct page *page;
|
||
|
unsigned int offset;
|
||
|
dma_addr_t dma_address;
|
||
|
unsigned int length;
|
||
|
};
|
||
|
|
||
|
#define ISA_DMA_THRESHOLD (0xffffffff)
|
||
|
|
||
|
#endif /* !(_H8300_SCATTERLIST_H) */
|