diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2023-09-13 16:08:41 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2023-10-06 10:03:04 +0200 |
commit | f9b34638c07e5cdb2c40151e4f9fb87c2dc62e9c (patch) | |
tree | d1634cf8c16420a5c6dac0689bc839f20deaf672 /arch/m68k | |
parent | m68k: sun3x: Make sun3x_halt() static (diff) | |
download | linux-f9b34638c07e5cdb2c40151e4f9fb87c2dc62e9c.tar.xz linux-f9b34638c07e5cdb2c40151e4f9fb87c2dc62e9c.zip |
m68k: sun3x: Make dvma_print() static
There was never a user of dvma_print() outside arch/m68k/sun3x/dvma.c.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/0a038ac68ee553b1928a975dc0ae1c16803a0ac0.1694613528.git.geert@linux-m68k.org
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/sun3x/dvma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/sun3x/dvma.c b/arch/m68k/sun3x/dvma.c index d1847bfa1367..5185b4818d40 100644 --- a/arch/m68k/sun3x/dvma.c +++ b/arch/m68k/sun3x/dvma.c @@ -60,7 +60,7 @@ static volatile unsigned long *iommu_pte = (unsigned long *)SUN3X_IOMMU; #ifdef DEBUG /* code to print out a dvma mapping for debugging purposes */ -void dvma_print (unsigned long dvma_addr) +static void dvma_print (unsigned long dvma_addr) { unsigned long index; |