summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2015-02-19 06:58:57 -0500
committerSimon Glass <sjg@chromium.org>2015-03-24 21:22:37 -0600
commit1c854dc5d4d4ce3ddec08a319d1c094ade8dabe7 (patch)
tree1945d5e9daab31701b8c9d894559d2e66172cfce /arch
parent312cc39e270170b37a992b2d57773c828dcb9c6b (diff)
downloadtalos-obmc-uboot-1c854dc5d4d4ce3ddec08a319d1c094ade8dabe7.tar.gz
talos-obmc-uboot-1c854dc5d4d4ce3ddec08a319d1c094ade8dabe7.zip
arch/x86/cpu/quark/mrc.c: Switch to U_BOOT_DATE / U_BOOT_TIME
Using __DATE__ and __TIME__ results in an error due to -Werror=date-time with gcc-4.9 (__DATE__ / __TIME__ might prevent reproducible builds) so switch these over to U_BOOT_DATE / U_BOOT_TIME Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@ti.com> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/cpu/quark/mrc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/cpu/quark/mrc.c b/arch/x86/cpu/quark/mrc.c
index 65734e9456..6e774cbcd8 100644
--- a/arch/x86/cpu/quark/mrc.c
+++ b/arch/x86/cpu/quark/mrc.c
@@ -34,6 +34,7 @@
*/
#include <common.h>
+#include <version.h>
#include <asm/arch/mrc.h>
#include <asm/arch/msg_port.h>
#include "mrc_util.h"
@@ -192,7 +193,7 @@ void mrc_init(struct mrc_params *mrc_params)
ENTERFN();
DPF(D_INFO, "MRC Version %04x %s %s\n", MRC_VERSION,
- __DATE__, __TIME__);
+ U_BOOT_DATE, U_BOOT_TIME);
/* Set up the data structures used by mrc_mem_init() */
mrc_adjust_params(mrc_params);
OpenPOWER on IntegriCloud