From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Subject: Re: [PATCH Resend 2/7] clk: tegra: Staticize tegra_clk_periph_nodiv_ops Date: Thu, 19 Dec 2013 10:01:19 -0700 Message-ID: <52B3265F.8080901@wwwdotorg.org> References: <1387443241-5694-1-git-send-email-sachin.kamat@linaro.org> <1387443241-5694-2-git-send-email-sachin.kamat@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1387443241-5694-2-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> Sender: linux-tegra-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Sachin Kamat , Peter De Schrijver Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org, "linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org" List-Id: linux-tegra@vger.kernel.org On 12/19/2013 01:53 AM, Sachin Kamat wrote: > tegra_clk_periph_nodiv_ops is used only in this file. Make it static. I believe that Peter De Schrijver is picking up patches for drivers/clk/tegra and sending pull requests to Mike. Hence, I'm CC'ing him in here. > > Signed-off-by: Sachin Kamat > --- > drivers/clk/tegra/clk-periph.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/clk/tegra/clk-periph.c b/drivers/clk/tegra/clk-periph.c > index c534043c0481..356e9b804421 100644 > --- a/drivers/clk/tegra/clk-periph.c > +++ b/drivers/clk/tegra/clk-periph.c > @@ -122,7 +122,7 @@ const struct clk_ops tegra_clk_periph_ops = { > .disable = clk_periph_disable, > }; > > -const struct clk_ops tegra_clk_periph_nodiv_ops = { > +static const struct clk_ops tegra_clk_periph_nodiv_ops = { > .get_parent = clk_periph_get_parent, > .set_parent = clk_periph_set_parent, > .is_enabled = clk_periph_is_enabled, >