mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 06:26:48 +07: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) */
|