Message ID | 20201116022909.3432466-1-npiggin@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | h8300: Fix generic mmu_context build | expand |
On Mon, Nov 16, 2020 at 3:29 AM Nicholas Piggin <npiggin@gmail.com> wrote: > > h8300 missed the generic nommu header conversion. > > Cc: Yoshinori Sato <ysato@users.sourceforge.jp> > Cc: uclinux-h8-devel@lists.sourceforge.jp > Cc: linux-mm@kvack.org > Fixes: 94f89922e1e0 ("asm-generic: add generic MMU versions of mmu context functions") > Reported-by: kernel test robot <lkp@intel.com> > Signed-off-by: Nicholas Piggin <npiggin@gmail.com> > --- > This is a fix for Arnd's asm-generic-mmu-context tree. > https://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git/log/?h=asm-generic-mmu-context Applied on top of this branch now, thanks! Arnd
diff --git a/arch/h8300/include/asm/mmu_context.h b/arch/h8300/include/asm/mmu_context.h new file mode 100644 index 000000000000..a9f550f5b5ec --- /dev/null +++ b/arch/h8300/include/asm/mmu_context.h @@ -0,0 +1,6 @@ +#ifndef _ASM_H8300_MMU_CONTEXT_H +#define _ASM_H8300_MMU_CONTEXT_H + +#include <asm-generic/nommu_context.h> + +#endif /* _ASM_H8300_MMU_CONTEXT_H */
h8300 missed the generic nommu header conversion. Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: uclinux-h8-devel@lists.sourceforge.jp Cc: linux-mm@kvack.org Fixes: 94f89922e1e0 ("asm-generic: add generic MMU versions of mmu context functions") Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Nicholas Piggin <npiggin@gmail.com> --- This is a fix for Arnd's asm-generic-mmu-context tree. https://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git/log/?h=asm-generic-mmu-context Thanks, Nick arch/h8300/include/asm/mmu_context.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 arch/h8300/include/asm/mmu_context.h