git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73ede8d
)
KVM: PPC: bookehv: remove negation for CONFIG_64BIT
author
Alexander Graf
<agraf@suse.de>
Thu, 16 Feb 2012 14:40:26 +0000
(14:40 +0000)
committer
Avi Kivity
<avi@redhat.com>
Sun, 8 Apr 2012 09:55:10 +0000
(12:55 +0300)
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>
No differences found