From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753001AbcGSIwP (ORCPT ); Tue, 19 Jul 2016 04:52:15 -0400 Received: from terminus.zytor.com ([198.137.202.10]:48576 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752249AbcGSIwL (ORCPT ); Tue, 19 Jul 2016 04:52:11 -0400 Date: Tue, 19 Jul 2016 01:51:42 -0700 From: tip-bot for Ben Dooks Message-ID: Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@kernel.org, tglx@linutronix.de, ben.dooks@codethink.co.uk Reply-To: ben.dooks@codethink.co.uk, tglx@linutronix.de, hpa@zytor.com, mingo@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <1466178974-7105-1-git-send-email-ben.dooks@codethink.co.uk> References: <1466178974-7105-1-git-send-email-ben.dooks@codethink.co.uk> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] clockevents: Make clockevents_subsys static Git-Commit-ID: 775be506266a860f141f6b848c92c316c602a94f X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 775be506266a860f141f6b848c92c316c602a94f Gitweb: http://git.kernel.org/tip/775be506266a860f141f6b848c92c316c602a94f Author: Ben Dooks AuthorDate: Fri, 17 Jun 2016 16:56:14 +0100 Committer: Thomas Gleixner CommitDate: Tue, 19 Jul 2016 10:48:06 +0200 clockevents: Make clockevents_subsys static The clockevents_subsys struct is used for sysfs support and is not declared or used outside the file it is defined in. Fix the following warning by making it static: kernel/time/clockevents.c:648:17: warning: symbol 'clockevents_subsys' was not declared. Should it be static? Signed-off-by: Ben Dooks Cc: linux-kernel@lists.codethink.co.uk Link: http://lkml.kernel.org/r/1466178974-7105-1-git-send-email-ben.dooks@codethink.co.uk Signed-off-by: Thomas Gleixner --- kernel/time/clockevents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/time/clockevents.c b/kernel/time/clockevents.c index a9b76a4..2c5bc77 100644 --- a/kernel/time/clockevents.c +++ b/kernel/time/clockevents.c @@ -645,7 +645,7 @@ void tick_cleanup_dead_cpu(int cpu) #endif #ifdef CONFIG_SYSFS -struct bus_type clockevents_subsys = { +static struct bus_type clockevents_subsys = { .name = "clockevents", .dev_name = "clockevent", };