OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [LINUX_2_4_26_OR32/] [linux/] [linux-2.4/] [include/] [asm-alpha/] [scatterlist.h] - Rev 1765

Compare with Previous | Blame | View Log

#ifndef _ALPHA_SCATTERLIST_H
#define _ALPHA_SCATTERLIST_H
 
#include <asm/page.h>
 
struct scatterlist {
	/* This will disappear in 2.5.x */
	char *address;
 
	/* These two are only valid if ADDRESS member of this
	   struct is NULL.  */
	struct page *page;
	unsigned int offset;
 
	unsigned int length;
 
	dma_addr_t dma_address;
	__u32 dma_length;
};
 
#define sg_dma_address(sg)	((sg)->dma_address)
#define sg_dma_len(sg)		((sg)->dma_length)
 
#define ISA_DMA_THRESHOLD (~0UL)
 
#endif /* !(_ALPHA_SCATTERLIST_H) */
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.