From mboxrd@z Thu Jan 1 00:00:00 1970 From: Firoz Khan Subject: [PATCH v4 1/4] m68k: rename system call table file name Date: Fri, 26 Oct 2018 10:36:14 +0530 Message-ID: <1540530377-3509-2-git-send-email-firoz.khan@linaro.org> References: <1540530377-3509-1-git-send-email-firoz.khan@linaro.org> Return-path: In-Reply-To: <1540530377-3509-1-git-send-email-firoz.khan@linaro.org> Sender: linux-kernel-owner@vger.kernel.org To: Geert Uytterhoeven , linux-m68k@lists.linux-m68k.org, Greg Kroah-Hartman , Philippe Ombredanne , Thomas Gleixner , Kate Stewart Cc: y2038@lists.linaro.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, arnd@arndb.de, deepa.kernel@gmail.com, marcin.juszkiewicz@linaro.org, firoz.khan@linaro.org List-Id: linux-arch.vger.kernel.org The system call table entries are present in syscalltable.S. One of the patch in this patch series will generate the sys- tem call table entries using the system call table generation script and which will replace the existig table file. In order to come up with a common naming convention across all architecture, we need to change the file name to syscall- _table.S. This change will unify the system call table gener- tion implementation across all architecture. Signed-off-by: Firoz Khan --- arch/m68k/kernel/Makefile | 2 +- arch/m68k/kernel/{syscalltable.S => syscall_table.S} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename arch/m68k/kernel/{syscalltable.S => syscall_table.S} (99%) diff --git a/arch/m68k/kernel/Makefile b/arch/m68k/kernel/Makefile index dbac7f8..5f40ce6 100644 --- a/arch/m68k/kernel/Makefile +++ b/arch/m68k/kernel/Makefile @@ -15,7 +15,7 @@ extra-$(CONFIG_SUN3) := sun3-head.o extra-y += vmlinux.lds obj-y := entry.o irq.o module.o process.o ptrace.o -obj-y += setup.o signal.o sys_m68k.o syscalltable.o time.o traps.o +obj-y += setup.o signal.o sys_m68k.o syscall_table.o time.o traps.o obj-$(CONFIG_MMU_MOTOROLA) += ints.o vectors.o obj-$(CONFIG_MMU_SUN3) += ints.o vectors.o diff --git a/arch/m68k/kernel/syscalltable.S b/arch/m68k/kernel/syscall_table.S similarity index 99% rename from arch/m68k/kernel/syscalltable.S rename to arch/m68k/kernel/syscall_table.S index 2c8402e..6145bc0 100644 --- a/arch/m68k/kernel/syscalltable.S +++ b/arch/m68k/kernel/syscall_table.S @@ -6,7 +6,7 @@ * * Copyright (C) 1998 D. Jeff Dionne , * Kenneth Albanowski , - * Copyright (C) 2000 Lineo Inc. (www.lineo.com) + * Copyright (C) 2000 Lineo Inc. (www.lineo.com) * Copyright (C) 1991, 1992 Linus Torvalds * * Linux/m68k support by Hamish Macdonald -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf1-f196.google.com ([209.85.210.196]:37140 "EHLO mail-pf1-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726149AbeJZNmV (ORCPT ); Fri, 26 Oct 2018 09:42:21 -0400 Received: by mail-pf1-f196.google.com with SMTP id j23-v6so5320056pfi.4 for ; Thu, 25 Oct 2018 22:06:52 -0700 (PDT) From: Firoz Khan Subject: [PATCH v4 1/4] m68k: rename system call table file name Date: Fri, 26 Oct 2018 10:36:14 +0530 Message-ID: <1540530377-3509-2-git-send-email-firoz.khan@linaro.org> In-Reply-To: <1540530377-3509-1-git-send-email-firoz.khan@linaro.org> References: <1540530377-3509-1-git-send-email-firoz.khan@linaro.org> Sender: linux-arch-owner@vger.kernel.org List-ID: To: Geert Uytterhoeven , linux-m68k@lists.linux-m68k.org, Greg Kroah-Hartman , Philippe Ombredanne , Thomas Gleixner , Kate Stewart Cc: y2038@lists.linaro.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, arnd@arndb.de, deepa.kernel@gmail.com, marcin.juszkiewicz@linaro.org, firoz.khan@linaro.org Message-ID: <20181026050614.8xbSBchgHS5-A59oIpwaN2Jfka1Q1MkZOUPh_jw9oaE@z> The system call table entries are present in syscalltable.S. One of the patch in this patch series will generate the sys- tem call table entries using the system call table generation script and which will replace the existig table file. In order to come up with a common naming convention across all architecture, we need to change the file name to syscall- _table.S. This change will unify the system call table gener- tion implementation across all architecture. Signed-off-by: Firoz Khan --- arch/m68k/kernel/Makefile | 2 +- arch/m68k/kernel/{syscalltable.S => syscall_table.S} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename arch/m68k/kernel/{syscalltable.S => syscall_table.S} (99%) diff --git a/arch/m68k/kernel/Makefile b/arch/m68k/kernel/Makefile index dbac7f8..5f40ce6 100644 --- a/arch/m68k/kernel/Makefile +++ b/arch/m68k/kernel/Makefile @@ -15,7 +15,7 @@ extra-$(CONFIG_SUN3) := sun3-head.o extra-y += vmlinux.lds obj-y := entry.o irq.o module.o process.o ptrace.o -obj-y += setup.o signal.o sys_m68k.o syscalltable.o time.o traps.o +obj-y += setup.o signal.o sys_m68k.o syscall_table.o time.o traps.o obj-$(CONFIG_MMU_MOTOROLA) += ints.o vectors.o obj-$(CONFIG_MMU_SUN3) += ints.o vectors.o diff --git a/arch/m68k/kernel/syscalltable.S b/arch/m68k/kernel/syscall_table.S similarity index 99% rename from arch/m68k/kernel/syscalltable.S rename to arch/m68k/kernel/syscall_table.S index 2c8402e..6145bc0 100644 --- a/arch/m68k/kernel/syscalltable.S +++ b/arch/m68k/kernel/syscall_table.S @@ -6,7 +6,7 @@ * * Copyright (C) 1998 D. Jeff Dionne , * Kenneth Albanowski , - * Copyright (C) 2000 Lineo Inc. (www.lineo.com) + * Copyright (C) 2000 Lineo Inc. (www.lineo.com) * Copyright (C) 1991, 1992 Linus Torvalds * * Linux/m68k support by Hamish Macdonald -- 1.9.1