summaryrefslogtreecommitdiffstats
path: root/arch/microblaze/include
diff options
context:
space:
mode:
authorChristoph Hellwig2018-01-09 16:29:53 +0100
committerChristoph Hellwig2018-01-10 16:41:15 +0100
commit7e05c19afbd3b2c1eaf8c58dbc70ff430668ab3c (patch)
treea92691601e6d831d8968fafb69c1bdb4f228ed71 /arch/microblaze/include
parentpowerpc: rename dma_direct_ to dma_nommu_ (diff)
downloadkernel-qcow2-linux-7e05c19afbd3b2c1eaf8c58dbc70ff430668ab3c.tar.gz
kernel-qcow2-linux-7e05c19afbd3b2c1eaf8c58dbc70ff430668ab3c.tar.xz
kernel-qcow2-linux-7e05c19afbd3b2c1eaf8c58dbc70ff430668ab3c.zip
microblaze: rename dma_direct to dma_nommu
This frees the dma_direct_* namespace for a generic implementation. Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'arch/microblaze/include')
-rw-r--r--arch/microblaze/include/asm/dma-mapping.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/microblaze/include/asm/dma-mapping.h b/arch/microblaze/include/asm/dma-mapping.h
index 6b9ea39405b8..add50c1373bf 100644
--- a/arch/microblaze/include/asm/dma-mapping.h
+++ b/arch/microblaze/include/asm/dma-mapping.h
@@ -18,11 +18,11 @@
/*
* Available generic sets of operations
*/
-extern const struct dma_map_ops dma_direct_ops;
+extern const struct dma_map_ops dma_nommu_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
- return &dma_direct_ops;
+ return &dma_nommu_ops;
}
#endif /* _ASM_MICROBLAZE_DMA_MAPPING_H */