diff options
Diffstat (limited to 'include/asm-sh/processor_64.h')
-rw-r--r-- | include/asm-sh/processor_64.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/asm-sh/processor_64.h b/include/asm-sh/processor_64.h index f54648229231..99c22b14a85b 100644 --- a/include/asm-sh/processor_64.h +++ b/include/asm-sh/processor_64.h | |||
@@ -102,8 +102,6 @@ extern struct sh_cpuinfo cpu_data[]; | |||
102 | * Single step bit | 102 | * Single step bit |
103 | * | 103 | * |
104 | */ | 104 | */ |
105 | #define SR_FD 0x00008000 | ||
106 | |||
107 | #if defined(CONFIG_SH64_SR_WATCH) | 105 | #if defined(CONFIG_SH64_SR_WATCH) |
108 | #define SR_MMU 0x84000000 | 106 | #define SR_MMU 0x84000000 |
109 | #else | 107 | #else |
@@ -243,16 +241,6 @@ static inline void enable_fpu(void) | |||
243 | : "r" (~SR_FD)); | 241 | : "r" (~SR_FD)); |
244 | } | 242 | } |
245 | 243 | ||
246 | static inline void release_fpu(struct pt_regs *regs) | ||
247 | { | ||
248 | regs->sr |= SR_FD; | ||
249 | } | ||
250 | |||
251 | static inline void grab_fpu(struct pt_regs *regs) | ||
252 | { | ||
253 | regs->sr &= ~SR_FD; | ||
254 | } | ||
255 | |||
256 | /* Round to nearest, no exceptions on inexact, overflow, underflow, | 244 | /* Round to nearest, no exceptions on inexact, overflow, underflow, |
257 | zero-divide, invalid. Configure option for whether to flush denorms to | 245 | zero-divide, invalid. Configure option for whether to flush denorms to |
258 | zero, or except if a denorm is encountered. */ | 246 | zero, or except if a denorm is encountered. */ |
@@ -263,13 +251,9 @@ static inline void grab_fpu(struct pt_regs *regs) | |||
263 | #endif | 251 | #endif |
264 | 252 | ||
265 | #ifdef CONFIG_SH_FPU | 253 | #ifdef CONFIG_SH_FPU |
266 | /* Save the current FP regs */ | ||
267 | void fpsave(struct sh_fpu_hard_struct *fpregs); | ||
268 | |||
269 | /* Initialise the FP state of a task */ | 254 | /* Initialise the FP state of a task */ |
270 | void fpinit(struct sh_fpu_hard_struct *fpregs); | 255 | void fpinit(struct sh_fpu_hard_struct *fpregs); |
271 | #else | 256 | #else |
272 | #define fpsave(fpregs) do { } while (0) | ||
273 | #define fpinit(fpregs) do { } while (0) | 257 | #define fpinit(fpregs) do { } while (0) |
274 | #endif | 258 | #endif |
275 | 259 | ||