diff options
Diffstat (limited to 'arch/sparc/kernel/kernel.h')
-rw-r--r-- | arch/sparc/kernel/kernel.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/arch/sparc/kernel/kernel.h b/arch/sparc/kernel/kernel.h index e122b4bf00f0..5ab4bc21be83 100644 --- a/arch/sparc/kernel/kernel.h +++ b/arch/sparc/kernel/kernel.h | |||
@@ -2,6 +2,7 @@ | |||
2 | #define __SPARC_KERNEL_H | 2 | #define __SPARC_KERNEL_H |
3 | 3 | ||
4 | #include <linux/interrupt.h> | 4 | #include <linux/interrupt.h> |
5 | #include <linux/ftrace.h> | ||
5 | 6 | ||
6 | #include <asm/traps.h> | 7 | #include <asm/traps.h> |
7 | #include <asm/head.h> | 8 | #include <asm/head.h> |
@@ -17,7 +18,7 @@ extern int ncpus_probed; | |||
17 | struct seq_file; | 18 | struct seq_file; |
18 | void cpucap_info(struct seq_file *); | 19 | void cpucap_info(struct seq_file *); |
19 | 20 | ||
20 | static inline unsigned long kimage_addr_to_ra(const char *p) | 21 | static inline unsigned long kimage_addr_to_ra(const void *p) |
21 | { | 22 | { |
22 | unsigned long val = (unsigned long) p; | 23 | unsigned long val = (unsigned long) p; |
23 | 24 | ||
@@ -33,6 +34,13 @@ int handle_popc(u32 insn, struct pt_regs *regs); | |||
33 | void handle_lddfmna(struct pt_regs *regs, unsigned long sfar, unsigned long sfsr); | 34 | void handle_lddfmna(struct pt_regs *regs, unsigned long sfar, unsigned long sfsr); |
34 | void handle_stdfmna(struct pt_regs *regs, unsigned long sfar, unsigned long sfsr); | 35 | void handle_stdfmna(struct pt_regs *regs, unsigned long sfar, unsigned long sfsr); |
35 | 36 | ||
37 | /* smp_64.c */ | ||
38 | void __irq_entry smp_call_function_client(int irq, struct pt_regs *regs); | ||
39 | void __irq_entry smp_call_function_single_client(int irq, struct pt_regs *regs); | ||
40 | void __irq_entry smp_new_mmu_context_version_client(int irq, struct pt_regs *regs); | ||
41 | void __irq_entry smp_penguin_jailcell(int irq, struct pt_regs *regs); | ||
42 | void __irq_entry smp_receive_signal_client(int irq, struct pt_regs *regs); | ||
43 | |||
36 | #endif | 44 | #endif |
37 | 45 | ||
38 | #ifdef CONFIG_SPARC32 | 46 | #ifdef CONFIG_SPARC32 |