aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/mips/kernel/ptrace.c4
-rw-r--r--arch/mips/kernel/ptrace32.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/kernel/ptrace.c b/arch/mips/kernel/ptrace.c
index 0b23b1ad99e6..1098ca8b50e9 100644
--- a/arch/mips/kernel/ptrace.c
+++ b/arch/mips/kernel/ptrace.c
@@ -797,7 +797,7 @@ long arch_ptrace(struct task_struct *child, long request,
797 /* 797 /*
798 * The odd registers are actually the high 798 * The odd registers are actually the high
799 * order bits of the values stored in the even 799 * order bits of the values stored in the even
800 * registers - unless we're using r2k_switch.S. 800 * registers.
801 */ 801 */
802 tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE], 802 tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE],
803 addr & 1); 803 addr & 1);
@@ -892,7 +892,7 @@ long arch_ptrace(struct task_struct *child, long request,
892 /* 892 /*
893 * The odd registers are actually the high 893 * The odd registers are actually the high
894 * order bits of the values stored in the even 894 * order bits of the values stored in the even
895 * registers - unless we're using r2k_switch.S. 895 * registers.
896 */ 896 */
897 set_fpr32(&fregs[(addr & ~1) - FPR_BASE], 897 set_fpr32(&fregs[(addr & ~1) - FPR_BASE],
898 addr & 1, data); 898 addr & 1, data);
diff --git a/arch/mips/kernel/ptrace32.c b/arch/mips/kernel/ptrace32.c
index 2b9260f92ccd..c6fc496430e9 100644
--- a/arch/mips/kernel/ptrace32.c
+++ b/arch/mips/kernel/ptrace32.c
@@ -103,7 +103,7 @@ long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
103 /* 103 /*
104 * The odd registers are actually the high 104 * The odd registers are actually the high
105 * order bits of the values stored in the even 105 * order bits of the values stored in the even
106 * registers - unless we're using r2k_switch.S. 106 * registers.
107 */ 107 */
108 tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE], 108 tmp = get_fpr32(&fregs[(addr & ~1) - FPR_BASE],
109 addr & 1); 109 addr & 1);
@@ -216,7 +216,7 @@ long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
216 /* 216 /*
217 * The odd registers are actually the high 217 * The odd registers are actually the high
218 * order bits of the values stored in the even 218 * order bits of the values stored in the even
219 * registers - unless we're using r2k_switch.S. 219 * registers.
220 */ 220 */
221 set_fpr32(&fregs[(addr & ~1) - FPR_BASE], 221 set_fpr32(&fregs[(addr & ~1) - FPR_BASE],
222 addr & 1, data); 222 addr & 1, data);