Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=56c74c733cdd101832c4bbf9af8a009a9eaec784
Commit:     56c74c733cdd101832c4bbf9af8a009a9eaec784
Parent:     c71799433aa4d6378502f781a155321e77da73aa
Author:     Paul Mundt <[EMAIL PROTECTED]>
AuthorDate: Wed Aug 1 16:26:21 2007 +0900
Committer:  Paul Mundt <[EMAIL PROTECTED]>
CommitDate: Wed Aug 1 16:26:21 2007 +0900

    sh: Don't include fault-nommu on SH-2/SH-2A.
    
    fault-nommu defines the page fault handler stubs for SH-3/4 parts,
    but is not needed on SH-2/SH-2A now that the entry code has been
    logically separated.
    
    Add it in for SH-3 and SH-4 explicitly.
    
    Signed-off-by: Paul Mundt <[EMAIL PROTECTED]>
---
 arch/sh/mm/Makefile |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/sh/mm/Makefile b/arch/sh/mm/Makefile
index d677d7f..4061e89 100644
--- a/arch/sh/mm/Makefile
+++ b/arch/sh/mm/Makefile
@@ -8,7 +8,9 @@ obj-$(CONFIG_CPU_SH2)   += cache-sh2.o
 obj-$(CONFIG_CPU_SH3)  += cache-sh3.o
 obj-$(CONFIG_CPU_SH4)  += cache-sh4.o
 
-mmu-y                  := fault-nommu.o tlb-nommu.o pg-nommu.o
+mmu-y                  := tlb-nommu.o pg-nommu.o
+mmu-$(CONFIG_CPU_SH3)  += fault-nommu.o
+mmu-$(CONFIG_CPU_SH4)  += fault-nommu.o
 mmu-$(CONFIG_MMU)      := fault.o clear_page.o copy_page.o tlb-flush.o \
                           ioremap.o
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to