Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177036
b: refs/heads/master
c: 61cc7b0
h: refs/heads/master
v: v3
  • Loading branch information
Matt Fleming authored and Paul Mundt committed Dec 15, 2009
1 parent 2519050 commit dff0736
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e76fe57447e88916954bdcab1c0d2c708ec3c943
refs/heads/master: 61cc7b0a172b047aa6d2c3e8b62bb1590f37e897
4 changes: 2 additions & 2 deletions trunk/arch/sh/kernel/cpu/sh5/fpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static union sh_fpu_union init_fpuregs = {
}
};

void save_fpu(struct task_struct *tsk, struct pt_regs *regs)
void save_fpu(struct task_struct *tsk)
{
asm volatile("fst.p %0, (0*8), fp0\n\t"
"fst.p %0, (1*8), fp2\n\t"
Expand Down Expand Up @@ -153,7 +153,7 @@ do_fpu_state_restore(unsigned long ex, struct pt_regs *regs)
enable_fpu();
if (last_task_used_math != NULL)
/* Other processes fpu state, save away */
save_fpu(last_task_used_math, regs);
save_fpu(last_task_used_math);

last_task_used_math = current;
if (used_math()) {
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/sh/kernel/process_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
if (fpvalid) {
if (current == last_task_used_math) {
enable_fpu();
save_fpu(tsk, regs);
save_fpu(tsk);
disable_fpu();
last_task_used_math = 0;
regs->sr |= SR_FD;
Expand All @@ -431,7 +431,7 @@ int copy_thread(unsigned long clone_flags, unsigned long usp,
#ifdef CONFIG_SH_FPU
if(last_task_used_math == current) {
enable_fpu();
save_fpu(current, regs);
save_fpu(current);
disable_fpu();
last_task_used_math = NULL;
regs->sr |= SR_FD;
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/sh/kernel/ptrace_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ get_fpu_long(struct task_struct *task, unsigned long addr)

if (last_task_used_math == task) {
enable_fpu();
save_fpu(task, regs);
save_fpu(task);
disable_fpu();
last_task_used_math = 0;
regs->sr |= SR_FD;
Expand Down Expand Up @@ -118,7 +118,7 @@ put_fpu_long(struct task_struct *task, unsigned long addr, unsigned long data)
set_stopped_child_used_math(task);
} else if (last_task_used_math == task) {
enable_fpu();
save_fpu(task, regs);
save_fpu(task);
disable_fpu();
last_task_used_math = 0;
regs->sr |= SR_FD;
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh/kernel/signal_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ setup_sigcontext_fpu(struct pt_regs *regs, struct sigcontext __user *sc)

if (current == last_task_used_math) {
enable_fpu();
save_fpu(current, regs);
save_fpu(current);
disable_fpu();
last_task_used_math = NULL;
regs->sr |= SR_FD;
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/sh/kernel/traps_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@ static int misaligned_fpu_load(struct pt_regs *regs,
indexed by register number. */
if (last_task_used_math == current) {
enable_fpu();
save_fpu(current, regs);
save_fpu(current);
disable_fpu();
last_task_used_math = NULL;
regs->sr |= SR_FD;
Expand Down Expand Up @@ -673,7 +673,7 @@ static int misaligned_fpu_store(struct pt_regs *regs,
indexed by register number. */
if (last_task_used_math == current) {
enable_fpu();
save_fpu(current, regs);
save_fpu(current);
disable_fpu();
last_task_used_math = NULL;
regs->sr |= SR_FD;
Expand Down

0 comments on commit dff0736

Please sign in to comment.