Skip to content

Commit

Permalink
[PATCH] powerpc: Fix incorrect pud_ERROR() message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
David Gibson authored and Paul Mackerras committed Mar 3, 2006
1 parent aa5cb02 commit 141aa59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-powerpc/pgtable-4k.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit 141aa59

Please sign in to comment.