public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break
@ 2013-02-07 22:17 Scott Wood
  2013-02-08  0:20 ` Alexander Graf
  0 siblings, 1 reply; 4+ messages in thread
From: Scott Wood @ 2013-02-07 22:17 UTC (permalink / raw)
  To: agraf; +Cc: kvm, kvm-ppc

Commit 2765788fcc3dc64920dd2be3d32319b50b1e2813 ("KVM: PPC: BookE: Handle
alignment interrupts") broke the build by adding mismatched parentheses.

Signed-off-by: Scott Wood <scottwood@freescale.com>
---
Against kvm-ppc-queue

 arch/powerpc/kvm/booke_interrupts.S |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/kvm/booke_interrupts.S b/arch/powerpc/kvm/booke_interrupts.S
index 7fa4167..f4bb55c 100644
--- a/arch/powerpc/kvm/booke_interrupts.S
+++ b/arch/powerpc/kvm/booke_interrupts.S
@@ -45,13 +45,13 @@
                         (1<<BOOKE_INTERRUPT_DEBUG))
 
 #define NEED_DEAR_MASK ((1<<BOOKE_INTERRUPT_DATA_STORAGE) | \
-                        (1<<BOOKE_INTERRUPT_DTLB_MISS)) | \
+                        (1<<BOOKE_INTERRUPT_DTLB_MISS) | \
                         (1<<BOOKE_INTERRUPT_ALIGNMENT))
 
 #define NEED_ESR_MASK ((1<<BOOKE_INTERRUPT_DATA_STORAGE) | \
                        (1<<BOOKE_INTERRUPT_INST_STORAGE) | \
                        (1<<BOOKE_INTERRUPT_PROGRAM) | \
-                       (1<<BOOKE_INTERRUPT_DTLB_MISS)) | \
+                       (1<<BOOKE_INTERRUPT_DTLB_MISS) | \
                        (1<<BOOKE_INTERRUPT_ALIGNMENT))
 
 .macro KVM_HANDLER ivor_nr scratch srr0
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-02-08  0:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-07 22:17 [PATCH] KVM: PPC: e500: fix BOOKE_INTERRUPT_ALIGNMENT build break Scott Wood
2013-02-08  0:20 ` Alexander Graf
2013-02-08  0:22   ` Scott Wood
2013-02-08  0:52     ` Alexander Graf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox