Commit bc1c88ce authored by David S. Miller's avatar David S. Miller

Sparc64: Fix typo in arch/sparc64/math-emu/math.c

current_thread_info --> current_thread_info().
parent 23a72dba
......@@ -341,7 +341,7 @@ int do_mathemu(struct pt_regs *regs, struct fpustate *f)
freg = ((insn >> 14) & 0x1f);
switch (type & 0x3) {
case 3: if (freg & 2) {
current_thread_info->xfsr[0] |= (6 << 14) /* invalid_fp_register */;
current_thread_info()->xfsr[0] |= (6 << 14) /* invalid_fp_register */;
goto err;
}
case 2: freg = ((freg & 1) << 5) | (freg & 0x1e);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment