m68k: use mmu scatterlist.h for non-mmu setups as well
There is only trivial differences between the non-mmu and mmu versions of scatterlist.h. So use the mmu one and remove the non-mmu one. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
This commit is contained in:
@@ -1,5 +1,23 @@
|
|||||||
#ifdef __uClinux__
|
#ifndef _M68K_SCATTERLIST_H
|
||||||
#include "scatterlist_no.h"
|
#define _M68K_SCATTERLIST_H
|
||||||
#else
|
|
||||||
#include "scatterlist_mm.h"
|
#include <linux/types.h>
|
||||||
|
|
||||||
|
struct scatterlist {
|
||||||
|
#ifdef CONFIG_DEBUG_SG
|
||||||
|
unsigned long sg_magic;
|
||||||
#endif
|
#endif
|
||||||
|
unsigned long page_link;
|
||||||
|
unsigned int offset;
|
||||||
|
unsigned int length;
|
||||||
|
|
||||||
|
__u32 dma_address; /* A place to hang host-specific addresses at. */
|
||||||
|
};
|
||||||
|
|
||||||
|
/* This is bogus and should go away. */
|
||||||
|
#define ISA_DMA_THRESHOLD (0x00ffffff)
|
||||||
|
|
||||||
|
#define sg_dma_address(sg) ((sg)->dma_address)
|
||||||
|
#define sg_dma_len(sg) ((sg)->length)
|
||||||
|
|
||||||
|
#endif /* !(_M68K_SCATTERLIST_H) */
|
||||||
|
@@ -1,23 +0,0 @@
|
|||||||
#ifndef _M68K_SCATTERLIST_H
|
|
||||||
#define _M68K_SCATTERLIST_H
|
|
||||||
|
|
||||||
#include <linux/types.h>
|
|
||||||
|
|
||||||
struct scatterlist {
|
|
||||||
#ifdef CONFIG_DEBUG_SG
|
|
||||||
unsigned long sg_magic;
|
|
||||||
#endif
|
|
||||||
unsigned long page_link;
|
|
||||||
unsigned int offset;
|
|
||||||
unsigned int length;
|
|
||||||
|
|
||||||
__u32 dma_address; /* A place to hang host-specific addresses at. */
|
|
||||||
};
|
|
||||||
|
|
||||||
/* This is bogus and should go away. */
|
|
||||||
#define ISA_DMA_THRESHOLD (0x00ffffff)
|
|
||||||
|
|
||||||
#define sg_dma_address(sg) ((sg)->dma_address)
|
|
||||||
#define sg_dma_len(sg) ((sg)->length)
|
|
||||||
|
|
||||||
#endif /* !(_M68K_SCATTERLIST_H) */
|
|
@@ -1,22 +0,0 @@
|
|||||||
#ifndef _M68KNOMMU_SCATTERLIST_H
|
|
||||||
#define _M68KNOMMU_SCATTERLIST_H
|
|
||||||
|
|
||||||
#include <linux/mm.h>
|
|
||||||
#include <asm/types.h>
|
|
||||||
|
|
||||||
struct scatterlist {
|
|
||||||
#ifdef CONFIG_DEBUG_SG
|
|
||||||
unsigned long sg_magic;
|
|
||||||
#endif
|
|
||||||
unsigned long page_link;
|
|
||||||
unsigned int offset;
|
|
||||||
dma_addr_t dma_address;
|
|
||||||
unsigned int length;
|
|
||||||
};
|
|
||||||
|
|
||||||
#define sg_dma_address(sg) ((sg)->dma_address)
|
|
||||||
#define sg_dma_len(sg) ((sg)->length)
|
|
||||||
|
|
||||||
#define ISA_DMA_THRESHOLD (0xffffffff)
|
|
||||||
|
|
||||||
#endif /* !(_M68KNOMMU_SCATTERLIST_H) */
|
|
Reference in New Issue
Block a user