Commit 52ab320ac560af3333191a473e56615fb48fff95

Authored by Yoichi Yuasa
Committed by Ralf Baechle
1 parent 627fa177a1

MIPS: Highmem: Fix build error

arch/mips/mm/highmem.c: In function 'kmap_init':
arch/mips/mm/highmem.c:130: error: 'init_mm' undeclared (first use in this function)
arch/mips/mm/highmem.c:130: error: (Each undeclared identifier is reported only once
arch/mips/mm/highmem.c:130: error: for each function it appears in.)

Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
Cc: linux-mips <linux-mips@linux-mips.org>
Patchwork: http://patchwork.linux-mips.org/patch/980/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

arch/mips/mm/highmem.c
1 1 #include <linux/module.h>
2 2 #include <linux/highmem.h>
  3 +#include <linux/sched.h>
3 4 #include <linux/smp.h>
4 5 #include <asm/fixmap.h>
5 6 #include <asm/tlbflush.h>