diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-05-19 16:09:28 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-06-17 02:19:51 -0400 |
commit | 32d206eb5637d8cf73d9c70f7680de2a7193ce8b (patch) | |
tree | 2cf899a00b5b7114b69bf9d60dc76b674f82bcf6 | |
parent | 06e86849cf4019945a106913adb9ff0abcc01770 (diff) |
powerpc/book3e: Clarify HW table walk enable/disable message
Before if we didn't support or enable HW table walk we'd get a messaage
like:
MMU: Book3E Page Tables Disabled
Which is a bit misleading. Now it will say:
MMU: Book3E HW tablewalk not supported
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/mm/tlb_nohash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/tlb_nohash.c b/arch/powerpc/mm/tlb_nohash.c index 0bdad3aecc6..56934991647 100644 --- a/arch/powerpc/mm/tlb_nohash.c +++ b/arch/powerpc/mm/tlb_nohash.c | |||
@@ -473,8 +473,8 @@ static void setup_mmu_htw(void) | |||
473 | (unsigned long)&exc_instruction_tlb_miss_htw_book3e, 0); | 473 | (unsigned long)&exc_instruction_tlb_miss_htw_book3e, 0); |
474 | book3e_htw_enabled = 1; | 474 | book3e_htw_enabled = 1; |
475 | } | 475 | } |
476 | pr_info("MMU: Book3E Page Tables %s\n", | 476 | pr_info("MMU: Book3E HW tablewalk %s\n", |
477 | book3e_htw_enabled ? "Enabled" : "Disabled"); | 477 | book3e_htw_enabled ? "enabled" : "not supported"); |
478 | } | 478 | } |
479 | 479 | ||
480 | /* | 480 | /* |