KVM: PPC: bookehv: remove negation for CONFIG_64BIT
authorAlexander Graf <agraf@suse.de>
Thu, 16 Feb 2012 14:40:26 +0000 (14:40 +0000)
committerAvi Kivity <avi@redhat.com>
Sun, 8 Apr 2012 09:55:10 +0000 (12:55 +0300)
commit8764b46ee3873b685a7823fc79388bae7d19e51e
tree63ef12fc38bba06a6bb051a5b0919a16d2e03bd4
parent73ede8d32be6adc298fe3c2716e77c352c504c8c
KVM: PPC: bookehv: remove negation for CONFIG_64BIT

Instead if doing

  #ifndef CONFIG_64BIT
  ...
  #else
  ...
  #endif

we should rather do

  #ifdef CONFIG_64BIT
  ...
  #else
  ...
  #endif

which is a lot easier to read. Change the bookehv implementation to
stick with this rule.

Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/powerpc/kvm/bookehv_interrupts.S