Skip to content

Commit

Permalink
MIPS: DSP: Put DSPcontrol register into the right place in the signal…
Browse files Browse the repository at this point in the history
… frame.

    
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
ralfbaechle authored and Unknown committed Jan 10, 2006
1 parent 07a801d commit c4fa634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/kernel/signal32.c
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ static inline int setup_sigcontext32(struct pt_regs *regs,
err |= __put_user(regs->hi, &sc->sc_mdhi);
err |= __put_user(regs->lo, &sc->sc_mdlo);
if (cpu_has_dsp) {
err |= __put_user(rddsp(DSP_MASK), &sc->sc_hi1);
err |= __put_user(rddsp(DSP_MASK), &sc->sc_dsp);
err |= __put_user(mfhi1(), &sc->sc_hi1);
err |= __put_user(mflo1(), &sc->sc_lo1);
err |= __put_user(mfhi2(), &sc->sc_hi2);
Expand Down

0 comments on commit c4fa634

Please sign in to comment.