https://github.com/torvalds/linux
Raw File
Tip revision: 39403865d2e4590802553370a56c9ab93131e4ee authored by Linus Torvalds on 13 May 2007, 01:45:56 UTC
Linux 2.6.22-rc1
Tip revision: 3940386
scatterlist.h
#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) */
back to top