diff options
author | Jon Hunter <jonathanh@nvidia.com> | 2015-12-04 17:57:04 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2016-04-05 16:22:39 +0300 |
commit | 1e52efdfc6a29f9bad767b92b89ae6ae772063cc (patch) | |
tree | 5408130448230d92d681de4149d9a219f5524bbd /drivers/soc/tegra/pmc.c | |
parent | 35b67291b4a85d37ec31f9d9ea3c5d3258ee0da6 (diff) | |
download | linux-1e52efdfc6a29f9bad767b92b89ae6ae772063cc.tar.xz |
soc/tegra: pmc: Fix sparse warning for tegra_pmc_init_tsense_reset()
Sparse reports the following warning for tegra_pmc_init_tsense_reset():
drivers/soc/tegra/pmc.c:741:6: warning: symbol 'tegra_pmc_init_tsense_reset' was not declared. Should it be static?
This function is only used internally by the PMC driver and so fix this
by making it static.
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/soc/tegra/pmc.c')
-rw-r--r-- | drivers/soc/tegra/pmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/tegra/pmc.c b/drivers/soc/tegra/pmc.c index 99ca91f09929..5b6125ecd69a 100644 --- a/drivers/soc/tegra/pmc.c +++ b/drivers/soc/tegra/pmc.c @@ -729,7 +729,7 @@ static void tegra_pmc_init(struct tegra_pmc *pmc) tegra_pmc_writel(value, PMC_CNTRL); } -void tegra_pmc_init_tsense_reset(struct tegra_pmc *pmc) +static void tegra_pmc_init_tsense_reset(struct tegra_pmc *pmc) { static const char disabled[] = "emergency thermal reset disabled"; u32 pmu_addr, ctrl_id, reg_addr, reg_data, pinmux; |