We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 369d135 commit dcead6eCopy full SHA for dcead6e
arch/sh/include/asm/tlb.h
@@ -24,6 +24,10 @@ static inline void tlb_unwire_entry(void)
24
BUG();
25
}
26
#endif /* CONFIG_CPU_SH4 */
27
+
28
+asmlinkage int handle_tlbmiss(struct pt_regs *regs, unsigned long error_code,
29
+ unsigned long address);
30
31
#endif /* CONFIG_MMU */
32
#endif /* __ASSEMBLY__ */
33
#endif /* __ASM_SH_TLB_H */
arch/sh/mm/tlbex_32.c
@@ -14,6 +14,7 @@
14
#include <linux/kdebug.h>
15
#include <asm/mmu_context.h>
16
#include <asm/thread_info.h>
17
+#include <asm/tlb.h>
18
19
/*
20
* Called with interrupts disabled.
0 commit comments