Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

sh: clear/copy_page renames in lib and lib64.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>

+4 -4
+2 -1
arch/sh/lib/Makefile
··· 8 8 memcpy-y := memcpy.o 9 9 memcpy-$(CONFIG_CPU_SH4) := memcpy-sh4.o 10 10 11 - lib-y += $(memcpy-y) 11 + lib-$(CONFIG_MMU) += copy_page.o clear_page.o 12 + lib-y += $(memcpy-y) 12 13 13 14 EXTRA_CFLAGS += -Werror
+1 -1
arch/sh/lib64/Makefile
··· 11 11 12 12 # Panic should really be compiled as PIC 13 13 lib-y := udelay.o c-checksum.o dbg.o panic.o memcpy.o copy_user_memcpy.o \ 14 - page_copy.o page_clear.o 14 + copy_page.o clear_page.o 15 15
arch/sh/lib64/page_clear.S arch/sh/lib64/clear_page.S
arch/sh/lib64/page_copy.S arch/sh/lib64/copy_page.S
+1 -2
arch/sh/mm/Makefile_32
··· 12 12 endif 13 13 14 14 mmu-y := tlb-nommu.o pg-nommu.o 15 - mmu-$(CONFIG_MMU) := fault_32.o clear_page.o copy_page.o tlbflush_32.o \ 16 - ioremap_32.o 15 + mmu-$(CONFIG_MMU) := fault_32.o tlbflush_32.o ioremap_32.o 17 16 18 17 obj-y += $(mmu-y) 19 18
arch/sh/mm/clear_page.S arch/sh/lib/clear_page.S
arch/sh/mm/copy_page.S arch/sh/lib/copy_page.S