aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2006-03-03 16:24:06 +1100
committerPaul Mackerras <paulus@samba.org>2006-03-03 22:00:52 +1100
commit141aa59b5347a4a021e37cfbc2258df9af9392f8 (patch)
tree75c16e758b2f8e5439cd7425ac4c8edc4c61f5fa /include/asm-powerpc
parent[PATCH] powerpc: Expose SMT and L1 icache snoop userland features (diff)
downloadlinux-dev-141aa59b5347a4a021e37cfbc2258df9af9392f8.tar.xz
linux-dev-141aa59b5347a4a021e37cfbc2258df9af9392f8.zip
[PATCH] powerpc: Fix incorrect pud_ERROR() message
The powerpc pud_ERROR() function misleadingly prints a message indicating a pmd error. This patch fixes it. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc')
-rw-r--r--include/asm-powerpc/pgtable-4k.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/pgtable-4k.h b/include/asm-powerpc/pgtable-4k.h
index e9590c06ad92..80a7832d2721 100644
--- a/include/asm-powerpc/pgtable-4k.h
+++ b/include/asm-powerpc/pgtable-4k.h
@@ -88,4 +88,4 @@
(((addr) >> PUD_SHIFT) & (PTRS_PER_PUD - 1)))
#define pud_ERROR(e) \
- printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pud_val(e))
+ printk("%s:%d: bad pud %08lx.\n", __FILE__, __LINE__, pud_val(e))