commit | 8764b46ee3873b685a7823fc79388bae7d19e51e | [log] [tgz] |
---|---|---|
author | Alexander Graf <agraf@suse.de> | Thu Feb 16 14:40:26 2012 +0000 |
committer | Avi Kivity <avi@redhat.com> | Sun Apr 08 12:55:10 2012 +0300 |
tree | 63ef12fc38bba06a6bb051a5b0919a16d2e03bd4 | |
parent | 73ede8d32be6adc298fe3c2716e77c352c504c8c [diff] |
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>