Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754727Ab1DEPBO (ORCPT ); Tue, 5 Apr 2011 11:01:14 -0400 Received: from cantor.suse.de ([195.135.220.2]:44474 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754166Ab1DEO7k (ORCPT ); Tue, 5 Apr 2011 10:59:40 -0400 From: Michal Marek To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Jon Maloy , Allan Stephens , tipc-discussion@lists.sourceforge.net, netdev@vger.kernel.org Subject: [PATCH 29/34] tipc: Drop __TIME__ usage Date: Tue, 5 Apr 2011 16:59:16 +0200 Message-Id: <1302015561-21047-30-git-send-email-mmarek@suse.cz> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1302015561-21047-1-git-send-email-mmarek@suse.cz> References: <1302015561-21047-1-git-send-email-mmarek@suse.cz> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1148 Lines: 35 The kernel already prints its build timestamp during boot, no need to repeat it in random drivers and produce different object files each time. Cc: Jon Maloy Cc: Allan Stephens Cc: tipc-discussion@lists.sourceforge.net Cc: netdev@vger.kernel.org Signed-off-by: Michal Marek --- net/tipc/core.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/net/tipc/core.c b/net/tipc/core.c index e071579..33532fe 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c @@ -185,8 +185,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; -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/