diff mbox

PATCH [2.6.31-rc6] fix warning in traps.c line 535

Message ID 20090819190410.GB24471@lackof.org (mailing list archive)
State Accepted
Headers show

Commit Message

Grant Grundler Aug. 19, 2009, 7:04 p.m. UTC
On Tue, Aug 18, 2009 at 01:45:17PM -0400, John David Anglin wrote:
...
> There's one new parisc warning that I noticed:
> 
>  CC      arch/parisc/kernel/traps.o
> arch/parisc/kernel/traps.c: In function 'handle_interruption':
> arch/parisc/kernel/traps.c:535:18: warning: operation on 'regs->iasq[0]' may be
> undefined
> 
> Looks like a typo.

Yes - Line 535 should use both [0] and [1].

Signed-off-by: Grant Grundler <grundler@parisc-linux.org>
----

--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/arch/parisc/kernel/traps.c b/arch/parisc/kernel/traps.c
index 528f0ff..8b58bf0 100644
--- a/arch/parisc/kernel/traps.c
+++ b/arch/parisc/kernel/traps.c
@@ -532,7 +532,7 @@  void notrace handle_interruption(int code, struct pt_regs *regs)
 	  	/* Kill the user process later */
 	  	regs->iaoq[0] = 0 | 3;
 		regs->iaoq[1] = regs->iaoq[0] + 4;
-	 	regs->iasq[0] = regs->iasq[0] = regs->sr[7];
+	 	regs->iasq[0] = regs->iasq[1] = regs->sr[7];
 		regs->gr[0] &= ~PSW_B;
 		return;
 	}