diff options
| author | Geert Uytterhoeven <[email protected]> | 2023-09-13 14:08:39 +0000 |
|---|---|---|
| committer | Geert Uytterhoeven <[email protected]> | 2023-10-06 08:03:04 +0000 |
| commit | 1dbda52ef93e49b29c965f21ca615f7280ee0b7f (patch) | |
| tree | 1a02aa65a1ad34027352c88ca8c9199e35316e30 | |
| parent | m68k: sun3x: Fix signature of sun3_leds() (diff) | |
| download | kernel-1dbda52ef93e49b29c965f21ca615f7280ee0b7f.tar.gz kernel-1dbda52ef93e49b29c965f21ca615f7280ee0b7f.zip | |
m68k: sun3x: Do not mark dvma_map_iommu() inline
dvma_map_iommu() is called from the common Sun3/3x DVMA management code,
but never from inside arch/m68k/sun3x/dvma.c. Hence it does not make
sense to mark it inline.
Signed-off-by: Geert Uytterhoeven <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Link: https://lore.kernel.org/r/0884fd1f5d6775535bf20b13cc74283df4955e49.1694613528.git.geert@linux-m68k.org
| -rw-r--r-- | arch/m68k/sun3x/dvma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/m68k/sun3x/dvma.c b/arch/m68k/sun3x/dvma.c index a6034ba05845..d1847bfa1367 100644 --- a/arch/m68k/sun3x/dvma.c +++ b/arch/m68k/sun3x/dvma.c @@ -143,8 +143,7 @@ inline int dvma_map_cpu(unsigned long kaddr, } -inline int dvma_map_iommu(unsigned long kaddr, unsigned long baddr, - int len) +int dvma_map_iommu(unsigned long kaddr, unsigned long baddr, int len) { unsigned long end, index; |
