From: Pali Rohár Date: Mon, 2 Aug 2021 13:18:36 +0000 (+0200) Subject: x86: quark: MRC: Remove U_BOOT_DATE and U_BOOT_TIME from debug log X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=fd004950804a60ebcba8dcc0cc850d793c3aa1ea;p=u-boot.git x86: quark: MRC: Remove U_BOOT_DATE and U_BOOT_TIME from debug log U_BOOT_DATE and U_BOOT_TIME are updated on every run of make command. Therefore mrc.c file is recompiled every time when running make which means that whole U-Boot binary is recompiled on every run of make command. Simplify it and do not recompile U-Boot binary on every run of make command by not depending on macros U_BOOT_DATE and U_BOOT_TIME. Signed-off-by: Pali Rohár Reviewed-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/cpu/quark/mrc.c b/arch/x86/cpu/quark/mrc.c index 3e8c0bc28c..ce3c2b8ab4 100644 --- a/arch/x86/cpu/quark/mrc.c +++ b/arch/x86/cpu/quark/mrc.c @@ -33,7 +33,6 @@ */ #include -#include #include #include #include "mrc_util.h" @@ -191,8 +190,7 @@ void mrc_init(struct mrc_params *mrc_params) { ENTERFN(); - DPF(D_INFO, "MRC Version %04x %s %s\n", MRC_VERSION, - U_BOOT_DATE, U_BOOT_TIME); + DPF(D_INFO, "MRC Version %04x\n", MRC_VERSION); /* Set up the data structures used by mrc_mem_init() */ mrc_adjust_params(mrc_params);