2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-18 18:23:53 +08:00
linux-next/include/asm-h8300/scatterlist.h

16 lines
274 B
C
Raw Normal View History

#ifndef _H8300_SCATTERLIST_H
#define _H8300_SCATTERLIST_H
#include <asm/types.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) */