You need to sign in or sign up before continuing.
提交 1dd71588 编写于 作者: C Christoph Hellwig 提交者: Ralf Baechle

MIPS: Don't use dma_cache_sync to implement fd_cacheflush

The floppy drivers doesn't otherwise use the DMA API, so indirecting
through it just for cache flushing in MIPS-specific code just call
dma_cache_wback_inv directly.
Signed-off-by: NChristoph Hellwig <hch@lst.de>
Cc: iommu@lists.linux-foundation.org
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Robin Murphy <robin.murphy@arm.com>
Cc: Michal Simek <monstr@monstr.eu>
Cc: David Howells <dhowells@redhat.com>
Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
Cc: Chris Zankel <chris@zankel.net>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Cc: x86@kernel.org
Cc: linux-mips@linux-mips.org
Cc: linux-ia64@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: linux-xtensa@linux-xtensa.org
Cc: linux-sh@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/17183/Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
上级 c2c03291
...@@ -10,11 +10,11 @@ ...@@ -10,11 +10,11 @@
#ifndef _ASM_FLOPPY_H #ifndef _ASM_FLOPPY_H
#define _ASM_FLOPPY_H #define _ASM_FLOPPY_H
#include <linux/dma-mapping.h> #include <asm/io.h>
static inline void fd_cacheflush(char * addr, long size) static inline void fd_cacheflush(char * addr, long size)
{ {
dma_cache_sync(NULL, addr, size, DMA_BIDIRECTIONAL); dma_cache_wback_inv((unsigned long)addr, size);
} }
#define MAX_BUFFER_SECTORS 24 #define MAX_BUFFER_SECTORS 24
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册