Commit 7cf27cb4 authored by Greg Ungerer's avatar Greg Ungerer Committed by Linus Torvalds

[PATCH] m68knommu: implement scatter/gather support macros

Implement the scattergather support macros for m68knommu targets.
Patch originally submitted by Leon Woestenberg <leonw@mailcan.com>.
Signed-off-by: default avatarGreg Ungerer <gerg@uclinux.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 962d69ed
#ifndef _M68KNOMMU_SCATTERLIST_H #ifndef _M68KNOMMU_SCATTERLIST_H
#define _M68KNOMMU_SCATTERLIST_H #define _M68KNOMMU_SCATTERLIST_H
#include <linux/mm.h>
struct scatterlist { struct scatterlist {
struct page *page; struct page *page;
unsigned int offset; unsigned int offset;
...@@ -8,6 +10,10 @@ struct scatterlist { ...@@ -8,6 +10,10 @@ struct scatterlist {
unsigned int length; unsigned int length;
}; };
#define sg_address(sg) (page_address((sg)->page) + (sg)->offset
#define sg_dma_address(sg) ((sg)->dma_address)
#define sg_dma_len(sg) ((sg)->length)
#define ISA_DMA_THRESHOLD (0xffffffff) #define ISA_DMA_THRESHOLD (0xffffffff)
#endif /* !(_M68KNOMMU_SCATTERLIST_H) */ #endif /* !(_M68KNOMMU_SCATTERLIST_H) */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment