From: Michal Marek Date: Tue, 5 Apr 2011 14:59:16 +0000 (+0200) Subject: tipc: Drop __TIME__ usage X-Git-Tag: accepted/tizen/common/20141203.182822~7533^2~111^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97fbdc1f77e9ce50ed0be543273d78f8de8675ac;p=platform%2Fkernel%2Flinux-arm64.git tipc: Drop __TIME__ usage The kernel already prints its build timestamp during boot, no need to repeat it in random drivers and produce different object files each time. Signed-off-by: Michal Marek Cc: Jon Maloy Cc: netdev@vger.kernel.org Cc: tipc-discussion@lists.sourceforge.net Signed-off-by: Allan Stephens Signed-off-by: Paul Gortmaker --- diff --git a/net/tipc/core.c b/net/tipc/core.c index c9a73e7..943b6af 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c @@ -179,8 +179,7 @@ static int __init tipc_init(void) if (tipc_log_resize(CONFIG_TIPC_LOG) != 0) warn("Unable to create log buffer\n"); - info("Activated (version " TIPC_MOD_VER - " compiled " __DATE__ " " __TIME__ ")\n"); + info("Activated (version " TIPC_MOD_VER ")\n"); tipc_own_addr = 0; tipc_remote_management = 1;