diff options
author | Alexander Graf <agraf@suse.de> | 2010-02-19 11:00:36 +0100 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-04-25 12:35:03 +0300 |
commit | e425a6de1a2b427747f5af17bd76630548944ff1 (patch) | |
tree | f6a215801cc6cf86e211fbad6cf15c36e784c3d9 /arch | |
parent | d1bab74c51eb13cf860ea2f0cd1d4d4605deb292 (diff) | |
download | linux-3.10-e425a6de1a2b427747f5af17bd76630548944ff1.tar.gz linux-3.10-e425a6de1a2b427747f5af17bd76630548944ff1.tar.bz2 linux-3.10-e425a6de1a2b427747f5af17bd76630548944ff1.zip |
KVM: PPC: Fix typo in book3s_32 debug code
There's a typo in the debug ifdef of the book3s_32 mmu emulation. While trying
to debug something I stumbled across that and wanted to save anyone after me
(or myself later) from having to debug that again.
So let's fix the ifdef.
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/kvm/book3s_32_mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/book3s_32_mmu.c b/arch/powerpc/kvm/book3s_32_mmu.c index faf99f20d99..1483a9bddda 100644 --- a/arch/powerpc/kvm/book3s_32_mmu.c +++ b/arch/powerpc/kvm/book3s_32_mmu.c @@ -37,7 +37,7 @@ #define dprintk(X...) do { } while(0) #endif -#ifdef DEBUG_PTE +#ifdef DEBUG_MMU_PTE #define dprintk_pte(X...) printk(KERN_INFO X) #else #define dprintk_pte(X...) do { } while(0) |