aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips
diff options
context:
space:
mode:
authorMarkos Chandras <markos.chandras@imgtec.com>2015-01-30 10:20:28 +0000
committerMarkos Chandras <markos.chandras@imgtec.com>2015-02-17 15:37:38 +0000
commit6134d94923d03556b4f74a7864759dc333030c98 (patch)
tree1e31542b62d375c89fbf5b435a63d3e97724eea9 /arch/mips
parentMIPS: kernel: process: Do not allow FR=0 on MIPS R6 (diff)
downloadlinux-dev-6134d94923d03556b4f74a7864759dc333030c98.tar.xz
linux-dev-6134d94923d03556b4f74a7864759dc333030c98.zip
MIPS: asm: fpu: Allow 64-bit FPU on MIPS32 R6
MIPS32 R6 has a 64-bit FPU so add the necessary MIPS R6 definition. Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Diffstat (limited to 'arch/mips')
-rw-r--r--arch/mips/include/asm/fpu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/include/asm/fpu.h b/arch/mips/include/asm/fpu.h
index 994d21939676..b96d9d327626 100644
--- a/arch/mips/include/asm/fpu.h
+++ b/arch/mips/include/asm/fpu.h
@@ -68,7 +68,8 @@ static inline int __enable_fpu(enum fpu_mode mode)
goto fr_common;
case FPU_64BIT:
-#if !(defined(CONFIG_CPU_MIPS32_R2) || defined(CONFIG_64BIT))
+#if !(defined(CONFIG_CPU_MIPS32_R2) || defined(CONFIG_CPU_MIPS32_R6) \
+ || defined(CONFIG_64BIT))
/* we only have a 32-bit FPU */
return SIGFPE;
#endif