From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932437AbbI3MRL (ORCPT ); Wed, 30 Sep 2015 08:17:11 -0400 Received: from mga11.intel.com ([192.55.52.93]:5239 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752419AbbI3MRJ (ORCPT ); Wed, 30 Sep 2015 08:17:09 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,612,1437462000"; d="scan'208";a="816167684" Date: Wed, 30 Sep 2015 20:15:49 +0800 From: kbuild test robot To: Arnd Bergmann Cc: kbuild-all@01.org, netdev@vger.kernel.org, y2038@lists.linaro.org, linux-kernel@vger.kernel.org, "David S. Miller" , Arnd Bergmann , Alexey Kuznetsov , James Morris , Hideaki YOSHIFUJI , Patrick McHardy , John Stultz , Thomas Gleixner Subject: [RFC PATCH] ipv4: ktime_get_ms_of_day() can be static Message-ID: <20150930121549.GA204787@lkp-ib04.intel.com> References: <201509302049.z9c32MsP%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1443612402-3000775-12-git-send-email-arnd@arndb.de> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Fengguang Wu --- timekeeping.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index 5611a6d..46b847a 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c @@ -847,7 +847,7 @@ time64_t ktime_get_real_seconds(void) EXPORT_SYMBOL_GPL(ktime_get_real_seconds); #if IS_ENABLED(CONFIG_INET) -u32 ktime_get_ms_of_day(void) +static u32 ktime_get_ms_of_day(void) { struct timekeeper *tk = &tk_core.timekeeper; struct timespec64 now;