On Tue, Sep 18, 2018 at 9:12 AM Firoz Khan firoz.khan@linaro.org wrote:
On 9 August 2018 at 12:42, Michal Simek michal.simek@xilinx.com 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