diff options
author | Guenter Roeck <linux@roeck-us.net> | 2017-09-10 13:44:47 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-27 21:39:22 -0700 |
commit | 01c3f0a42a2a0ff0c3fed80a1a25f2641ae72554 (patch) | |
tree | ab831a0d8fd5de8213462819d675fa813b1a1d5c /arch/sparc | |
parent | 9cd6681cb1169e815c41af0265165dd1b872f228 (diff) | |
download | op-kernel-dev-01c3f0a42a2a0ff0c3fed80a1a25f2641ae72554.zip op-kernel-dev-01c3f0a42a2a0ff0c3fed80a1a25f2641ae72554.tar.gz |
sparc64: mmu_context: Add missing include files
Fix the following build errors.
In file included from arch/sparc/include/asm/mmu_context.h:4:0,
from include/linux/mmu_context.h:4,
from drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h:29,
from drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c:23:
arch/sparc/include/asm/mmu_context_64.h:22:37: error:
unknown type name 'per_cpu_secondary_mm'
arch/sparc/include/asm/mmu_context_64.h: In function 'switch_mm':
arch/sparc/include/asm/mmu_context_64.h:79:2: error:
implicit declaration of function 'smp_processor_id'
Fixes: 70539bd79500 ("drm/amd: Update MEC HQD loading code for KFD")
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Oded Gabbay <oded.gabbay@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc')
-rw-r--r-- | arch/sparc/include/asm/mmu_context_64.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sparc/include/asm/mmu_context_64.h b/arch/sparc/include/asm/mmu_context_64.h index 87841d6..a34315e 100644 --- a/arch/sparc/include/asm/mmu_context_64.h +++ b/arch/sparc/include/asm/mmu_context_64.h @@ -7,9 +7,11 @@ #include <linux/spinlock.h> #include <linux/mm_types.h> +#include <linux/smp.h> #include <asm/spitfire.h> #include <asm-generic/mm_hooks.h> +#include <asm/percpu.h> static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk) { |