scatterlist.h

来自「Linux Kernel 2.6.9 for OMAP1710」· C头文件 代码 · 共 24 行

H
24
字号
/* * This file is subject to the terms and conditions of the GNU General Public * License.  See the file "COPYING" in the main directory of this archive * for more details. * * include/asm-sh64/scatterlist.h * * Copyright (C) 2003  Paul Mundt * */#ifndef __ASM_SH64_SCATTERLIST_H#define __ASM_SH64_SCATTERLIST_Hstruct 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 (0xffffffff)#endif /* !__ASM_SH64_SCATTERLIST_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?