aboutsummaryrefslogtreecommitdiff
path: root/include/asm-sh/processor_64.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-sh/processor_64.h')
-rw-r--r--include/asm-sh/processor_64.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-sh/processor_64.h b/include/asm-sh/processor_64.h
index 312fd73fb87..f5464822923 100644
--- a/include/asm-sh/processor_64.h
+++ b/include/asm-sh/processor_64.h
@@ -262,11 +262,16 @@ static inline void grab_fpu(struct pt_regs *regs)
#define FPSCR_INIT 0x00000000
#endif
+#ifdef CONFIG_SH_FPU
/* Save the current FP regs */
void fpsave(struct sh_fpu_hard_struct *fpregs);
/* Initialise the FP state of a task */
void fpinit(struct sh_fpu_hard_struct *fpregs);
+#else
+#define fpsave(fpregs) do { } while (0)
+#define fpinit(fpregs) do { } while (0)
+#endif
extern struct task_struct *last_task_used_math;