Re: [PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-04-06 Thread Geert Uytterhoeven
On Tue, Mar 25, 2014 at 4:48 PM, Arnd Bergmann wrote: > We specifically build the kernel with -Werror=date-time to detect > such macros, which gives us this error: > > gs_fpgaboot/gs_fpgaboot.c:376:44: error: macro "__TIMESTAMP__" might prevent > reproducible builds [-Werror=date-time] >

Re: [PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-04-06 Thread Geert Uytterhoeven
On Tue, Mar 25, 2014 at 4:48 PM, Arnd Bergmann a...@arndb.de wrote: We specifically build the kernel with -Werror=date-time to detect such macros, which gives us this error: gs_fpgaboot/gs_fpgaboot.c:376:44: error: macro __TIMESTAMP__ might prevent reproducible builds [-Werror=date-time]

RE: [PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-03-28 Thread Insop Song
From: Arnd Bergmann Sent: Tuesday, March 25, 2014 8:48 AM To: gre...@linuxfoundation.org Cc: linux-kernel@vger.kernel.org; Insop Song Subject: [PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro We specifically build the kernel with -Werror=date

RE: [PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-03-28 Thread Insop Song
From: Arnd Bergmann a...@arndb.de Sent: Tuesday, March 25, 2014 8:48 AM To: gre...@linuxfoundation.org Cc: linux-kernel@vger.kernel.org; Insop Song Subject: [PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro We specifically build the kernel

[PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-03-27 Thread Insop Song
Remove warning Insop Song (1): Remove warning printk drivers/staging/gs_fpgaboot/gs_fpgaboot.c |1 - 1 file changed, 1 deletion(-) -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-03-27 Thread Insop Song
Remove warning Insop Song (1): Remove warning printk drivers/staging/gs_fpgaboot/gs_fpgaboot.c |1 - 1 file changed, 1 deletion(-) -- 1.7.9.5 -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo

[PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-03-25 Thread Arnd Bergmann
We specifically build the kernel with -Werror=date-time to detect such macros, which gives us this error: gs_fpgaboot/gs_fpgaboot.c:376:44: error: macro "__TIMESTAMP__" might prevent reproducible builds [-Werror=date-time] pr_info("built at %s UTC\n", __TIMESTAMP__); The obvious fix is to

[PATCH] staging: gs_fpgaboot: remove __TIMESTAMP__ macro

2014-03-25 Thread Arnd Bergmann
We specifically build the kernel with -Werror=date-time to detect such macros, which gives us this error: gs_fpgaboot/gs_fpgaboot.c:376:44: error: macro __TIMESTAMP__ might prevent reproducible builds [-Werror=date-time] pr_info(built at %s UTC\n, __TIMESTAMP__); The obvious fix is to remove