summaryrefslogtreecommitdiff
path: root/arch/powerpc
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2023-07-27 15:25:42 +0300
committerChristoph Hellwig <hch@lst.de>2023-07-31 18:54:28 +0300
commit3d6f126b15d9fd8435455fffc912d976973a7a09 (patch)
tree5cec53b7672f19c8aab66ab51209fed4edfc32b2 /arch/powerpc
parent42e584a9856052c3695645d4e3ace767de01dfab (diff)
downloadlinux-3d6f126b15d9fd8435455fffc912d976973a7a09.tar.xz
dma-mapping: move arch_dma_set_mask() declaration to header
This function has a __weak definition and an override that is only used on freescale powerpc chips. The powerpc definition however does not see the declaration that is in a .c file: arch/powerpc/kernel/dma-mask.c:7:6: error: no previous prototype for 'arch_dma_set_mask' [-Werror=missing-prototypes] Move it into the linux/dma-map-ops.h header where the other arch_dma_* functions are declared. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/dma-mask.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/dma-mask.c b/arch/powerpc/kernel/dma-mask.c
index ffbbbc432612..5b07ca7b73aa 100644
--- a/arch/powerpc/kernel/dma-mask.c
+++ b/arch/powerpc/kernel/dma-mask.c
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0
#include <linux/dma-mapping.h>
+#include <linux/dma-map-ops.h>
#include <linux/export.h>
#include <asm/machdep.h>