x86: use dma_length in i386
This is done to get the code closer to x86_64. Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
5b3e5b7273
commit
d741bde26d
|
@ -24,6 +24,7 @@ static int pci32_dma_map_sg(struct device *dev, struct scatterlist *sglist,
|
||||||
BUG_ON(!sg_page(sg));
|
BUG_ON(!sg_page(sg));
|
||||||
|
|
||||||
sg->dma_address = sg_phys(sg);
|
sg->dma_address = sg_phys(sg);
|
||||||
|
sg->dma_length = sg->length;
|
||||||
}
|
}
|
||||||
|
|
||||||
flush_write_buffers();
|
flush_write_buffers();
|
||||||
|
|
|
@ -11,9 +11,7 @@ struct scatterlist {
|
||||||
unsigned int offset;
|
unsigned int offset;
|
||||||
unsigned int length;
|
unsigned int length;
|
||||||
dma_addr_t dma_address;
|
dma_addr_t dma_address;
|
||||||
#ifdef CONFIG_X86_64
|
|
||||||
unsigned int dma_length;
|
unsigned int dma_length;
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#define ARCH_HAS_SG_CHAIN
|
#define ARCH_HAS_SG_CHAIN
|
||||||
|
|
Loading…
Reference in New Issue