From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arnd Bergmann Subject: Re: [PATCH 3/3] microblaze: uapi header and system call table file generation Date: Tue, 25 Sep 2018 01:20:21 +0200 Message-ID: References: <1533792466-4227-1-git-send-email-firoz.khan@linaro.org> <1533792466-4227-4-git-send-email-firoz.khan@linaro.org> <27544098-abc8-db2e-5625-179d13fa63df@xilinx.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org To: Firoz Khan Cc: Michal Simek , gregkh , Philippe Ombredanne , Thomas Gleixner , Kate Stewart , y2038 Mailman List , Linux Kernel Mailing List , linux-arch , Deepa Dinamani , Marcin Juszkiewicz List-Id: linux-arch.vger.kernel.org On Tue, Sep 18, 2018 at 9:12 AM Firoz Khan wrote: > > On 9 August 2018 at 12:42, Michal Simek wrote: > > On 9.8.2018 07:27, Firoz Khan wrote: > >> diff --git a/arch/microblaze/include/asm/Kbuild b/arch/microblaze/include/asm/Kbuild > >> index fe6a6c6..99225ab 100644 > >> --- a/arch/microblaze/include/asm/Kbuild > >> +++ b/arch/microblaze/include/asm/Kbuild > >> @@ -30,3 +30,5 @@ generic-y += trace_clock.h > >> generic-y += vga.h > >> generic-y += word-at-a-time.h > >> generic-y += xor.h > >> + > >> +generated-y += syscall_table.h > >> \ No newline at end of file > > > > This doesn't look right. > > You mean I have to keep something like this? > generic-y += xor.h > - > -generated-y += syscall_table.h > \ No newline at end of file > +generic-y += syscall_table.h > \ No newline at end of file The "\ No newline at end of file" line is produced by git format-patch when you have accidentally removed the newline at the end. Most editors don't even allow you to do that, so I don't know what went wrong. Arnd From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-f196.google.com ([209.85.160.196]:38518 "EHLO mail-qt1-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726200AbeIYFZN (ORCPT ); Tue, 25 Sep 2018 01:25:13 -0400 MIME-Version: 1.0 References: <1533792466-4227-1-git-send-email-firoz.khan@linaro.org> <1533792466-4227-4-git-send-email-firoz.khan@linaro.org> <27544098-abc8-db2e-5625-179d13fa63df@xilinx.com> In-Reply-To: From: Arnd Bergmann Date: Tue, 25 Sep 2018 01:20:21 +0200 Message-ID: Subject: Re: [PATCH 3/3] microblaze: uapi header and system call table file generation Content-Type: text/plain; charset="UTF-8" Sender: linux-arch-owner@vger.kernel.org List-ID: To: Firoz Khan Cc: Michal Simek , gregkh , Philippe Ombredanne , Thomas Gleixner , Kate Stewart , y2038 Mailman List , Linux Kernel Mailing List , linux-arch , Deepa Dinamani , Marcin Juszkiewicz Message-ID: <20180924232021.AVAb8QVlU-f_BUjQgWAxQ8xV3QWc8HjkzIT5S71dn38@z> On Tue, Sep 18, 2018 at 9:12 AM Firoz Khan wrote: > > On 9 August 2018 at 12:42, Michal Simek wrote: > > On 9.8.2018 07:27, Firoz Khan wrote: > >> diff --git a/arch/microblaze/include/asm/Kbuild b/arch/microblaze/include/asm/Kbuild > >> index fe6a6c6..99225ab 100644 > >> --- a/arch/microblaze/include/asm/Kbuild > >> +++ b/arch/microblaze/include/asm/Kbuild > >> @@ -30,3 +30,5 @@ generic-y += trace_clock.h > >> generic-y += vga.h > >> generic-y += word-at-a-time.h > >> generic-y += xor.h > >> + > >> +generated-y += syscall_table.h > >> \ No newline at end of file > > > > This doesn't look right. > > You mean I have to keep something like this? > generic-y += xor.h > - > -generated-y += syscall_table.h > \ No newline at end of file > +generic-y += syscall_table.h > \ No newline at end of file The "\ No newline at end of file" line is produced by git format-patch when you have accidentally removed the newline at the end. Most editors don't even allow you to do that, so I don't know what went wrong. Arnd