Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933355AbbLHJzr (ORCPT ); Tue, 8 Dec 2015 04:55:47 -0500 Received: from hqemgate16.nvidia.com ([216.228.121.65]:15099 "EHLO hqemgate16.nvidia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932348AbbLHJzm (ORCPT ); Tue, 8 Dec 2015 04:55:42 -0500 X-PGP-Universal: processed; by hqnvupgp08.nvidia.com on Tue, 08 Dec 2015 01:52:29 -0800 Subject: Re: [PATCH 3/3] clk: tegra-super: Fix sparse warnings for functions not declared as static To: Rhyland Klein , Peter De Schrijver , Prashant Gaikwad , "Michael Turquette" , Stephen Boyd , Stephen Warren , Thierry Reding , Alexandre Courbot References: <1449248665-22343-1-git-send-email-jonathanh@nvidia.com> <1449248665-22343-3-git-send-email-jonathanh@nvidia.com> <5665AB15.80602@nvidia.com> <5665C715.7030608@nvidia.com> CC: , , From: Jon Hunter Message-ID: <5666A90E.9000007@nvidia.com> Date: Tue, 8 Dec 2015 09:55:26 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <5665C715.7030608@nvidia.com> X-Originating-IP: [10.21.132.159] X-ClientProxiedBy: UKMAIL102.nvidia.com (10.26.138.15) To UKMAIL101.nvidia.com (10.26.138.13) Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1770 Lines: 44 On 07/12/15 17:51, Rhyland Klein wrote: > On 12/7/2015 10:51 AM, Rhyland Klein wrote: >> On 12/4/2015 12:04 PM, Jon Hunter wrote: >>> Sparse reports the following warnings for structures and functions that >>> should be declared static: >>> >>> drivers/clk/tegra/clk-tegra-super-gen4.c:70:35: warning: symbol >>> 'tegra_super_gen_info_gen4' was not declared. Should it be static? >>> drivers/clk/tegra/clk-tegra-super-gen4.c:96:35: warning: symbol >>> 'tegra_super_gen_info_gen5' was not declared. Should it be static? >>> drivers/clk/tegra/clk-tegra-super-gen4.c:174:13: warning: symbol >>> 'tegra_super_clk_init' was not declared. Should it be static? >>> >>> Fix this by making the above static. >>> >>> Fixes: 88467d220119 ("clk: tegra: Add Super Gen5 Logic") >>> >>> Signed-off-by: Jon Hunter >>> --- >>> drivers/clk/tegra/clk-tegra-super-gen4.c | 6 +++--- >>> 1 file changed, 3 insertions(+), 3 deletions(-) >> ... >> >> Acked-by: Rhyland Klein >> > > Actually, Don't you need to change the function declarations in > drivers/clk/tegra/clk.h for tegra_super_clk_gen[4|5]_init otherwise you > will get mismatches with one being declared static and the other not? So this patch does not touch the functions tegra_super_clk_gen[4|5]_init() and these should definitely not be static. This patch just makes the structures tegra_super_gen_info_gen[4|5] and the function tegra_super_clk_init() static. None of these are referenced outside clk-tegra-super-gen4.c. Cheers Jon -- 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/