From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965784AbcBRBgx (ORCPT ); Wed, 17 Feb 2016 20:36:53 -0500 Received: from v094114.home.net.pl ([79.96.170.134]:46643 "HELO v094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S965645AbcBRBgu (ORCPT ); Wed, 17 Feb 2016 20:36:50 -0500 From: "Rafael J. Wysocki" To: Linux PM list Cc: Linux Kernel Mailing List , Viresh Kumar Subject: [PATCH 11/12] cpufreq: governor: Make dbs_data_mutex static Date: Thu, 18 Feb 2016 02:33:43 +0100 Message-ID: <1655404.H6dIaK3J3n@vostro.rjw.lan> User-Agent: KMail/4.11.5 (Linux/4.5.0-rc1+; KDE/4.11.5; x86_64; ; ) In-Reply-To: <2938006.67J0esUvOA@vostro.rjw.lan> References: <2938006.67J0esUvOA@vostro.rjw.lan> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="utf-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Rafael J. Wysocki That mutex is only used by cpufreq_governor_dbs() and it doesn't need to be exported to modules, so make it static and drop the export incantation. No functional changes. Signed-off-by: Rafael J. Wysocki --- drivers/cpufreq/cpufreq_governor.c | 3 +-- drivers/cpufreq/cpufreq_governor.h | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) Index: linux-pm/drivers/cpufreq/cpufreq_governor.c =================================================================== --- linux-pm.orig/drivers/cpufreq/cpufreq_governor.c +++ linux-pm/drivers/cpufreq/cpufreq_governor.c @@ -24,8 +24,7 @@ static DEFINE_PER_CPU(struct cpu_dbs_info, cpu_dbs); -DEFINE_MUTEX(dbs_data_mutex); -EXPORT_SYMBOL_GPL(dbs_data_mutex); +static DEFINE_MUTEX(dbs_data_mutex); /* Common sysfs tunables */ /** Index: linux-pm/drivers/cpufreq/cpufreq_governor.h =================================================================== --- linux-pm.orig/drivers/cpufreq/cpufreq_governor.h +++ linux-pm/drivers/cpufreq/cpufreq_governor.h @@ -178,7 +178,6 @@ struct od_ops { unsigned int freq_next, unsigned int relation); }; -extern struct mutex dbs_data_mutex; unsigned int dbs_update(struct cpufreq_policy *policy); int cpufreq_governor_dbs(struct cpufreq_policy *policy, unsigned int event); void od_register_powersave_bias_handler(unsigned int (*f)