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

s390: remove "64" suffix from mem64.S and swsusp_asm64.S

Rename two more files which I forgot. Also remove the "asm" from the
swsusp_asm64.S file, since the ".S" suffix already makes it obvious
that this file contains assembler code.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by

Heiko Carstens and committed by
Martin Schwidefsky
304987e3 3be7ae63

+2 -2
+1 -1
arch/s390/kernel/Makefile
··· 40 40 obj-$(CONFIG_MODULES) += s390_ksyms.o module.o 41 41 obj-$(CONFIG_SMP) += smp.o 42 42 obj-$(CONFIG_SCHED_BOOK) += topology.o 43 - obj-$(CONFIG_HIBERNATION) += suspend.o swsusp_asm64.o 43 + obj-$(CONFIG_HIBERNATION) += suspend.o swsusp.o 44 44 obj-$(CONFIG_AUDIT) += audit.o 45 45 compat-obj-$(CONFIG_AUDIT) += compat_audit.o 46 46 obj-$(CONFIG_COMPAT) += compat_linux.o compat_signal.o
arch/s390/kernel/swsusp_asm64.S arch/s390/kernel/swsusp.S
+1 -1
arch/s390/lib/Makefile
··· 3 3 # 4 4 5 5 lib-y += delay.o string.o uaccess.o find.o 6 - obj-y += mem64.o 6 + obj-y += mem.o 7 7 lib-$(CONFIG_SMP) += spinlock.o 8 8 lib-$(CONFIG_KPROBES) += probes.o 9 9 lib-$(CONFIG_UPROBES) += probes.o
arch/s390/lib/mem64.S arch/s390/lib/mem.S