[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>

authored by David Gibson and committed by Paul Mackerras 141aa59b aa5cb021

+1 -1
+1 -1
include/asm-powerpc/pgtable-4k.h
··· 88 (((addr) >> PUD_SHIFT) & (PTRS_PER_PUD - 1))) 89 90 #define pud_ERROR(e) \ 91 - printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pud_val(e))
··· 88 (((addr) >> PUD_SHIFT) & (PTRS_PER_PUD - 1))) 89 90 #define pud_ERROR(e) \ 91 + printk("%s:%d: bad pud %08lx.\n", __FILE__, __LINE__, pud_val(e))