m68k: mmu_context: Fix Sun-3 build
authorGeert Uytterhoeven <geert+renesas@glider.be>
Tue, 27 Oct 2020 08:19:19 +0000 (09:19 +0100)
committerArnd Bergmann <arnd@arndb.de>
Tue, 27 Oct 2020 16:23:42 +0000 (17:23 +0100)
commit2040a6bf90b530165cc86dfa879d5daa3b85f220
tree00c9979bfce1f1b80c44ed67c8f6d324ca87c233
parent0a1c8e54c8e829f80e0d81c357efc23879ee9ca6
m68k: mmu_context: Fix Sun-3 build

When building for Sun-3 (e.g. sun3_defconfig):

    In file included from ./arch/m68k/include/asm/mmu_context.h:312,
     from arch/m68k/sun3/mmu_emu.c:28:
    ./include/asm-generic/mmu_context.h:46:20: error: redefinition of ‘destroy_context’
       46 | static inline void destroy_context(struct mm_struct *mm)
  |                    ^~~~~~~~~~~~~~~
    In file included from arch/m68k/sun3/mmu_emu.c:28:
    ./arch/m68k/include/asm/mmu_context.h:192:20: note: previous definition of ‘destroy_context’ was here
      192 | static inline void destroy_context(struct mm_struct *mm)
  |                    ^~~~~~~~~~~~~~~

Fix this by marking destroy_context implemented by arch-specific code.

Fixes: cb41155766b05935 ("m68k: use asm-generic/mmu_context.h for no-op implementations")
Reported-by: noreply@ellerman.id.au
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/m68k/include/asm/mmu_context.h