diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2016-06-17 20:21:51 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-06-18 16:09:00 +0300 |
commit | 716540fdd3d2461a00005cc1d9de067a27535ce2 (patch) | |
tree | 895e69eef95cebfb605efdeb4d7473e5cb6fe512 /sound/soc/codecs/max9860.c | |
parent | 3b2af7f79968f0df51b13fc8eed3bf1498f8a79d (diff) | |
download | linux-716540fdd3d2461a00005cc1d9de067a27535ce2.tar.xz |
ASoC: max9860: fix non static symbol warnings
Fixes the following sparse warnings:
sound/soc/codecs/max9860.c:120:28: warning:
symbol 'max9860_regmap' was not declared. Should it be static?
sound/soc/codecs/max9860.c:596:25: warning:
symbol 'max9860_pm_ops' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/max9860.c')
-rw-r--r-- | sound/soc/codecs/max9860.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/max9860.c b/sound/soc/codecs/max9860.c index 2b0dd6a18dad..68074c92a7c0 100644 --- a/sound/soc/codecs/max9860.c +++ b/sound/soc/codecs/max9860.c @@ -117,7 +117,7 @@ static bool max9860_precious(struct device *dev, unsigned int reg) return false; } -const struct regmap_config max9860_regmap = { +static const struct regmap_config max9860_regmap = { .reg_bits = 8, .val_bits = 8, @@ -593,7 +593,7 @@ static int max9860_resume(struct device *dev) } #endif -const struct dev_pm_ops max9860_pm_ops = { +static const struct dev_pm_ops max9860_pm_ops = { SET_RUNTIME_PM_OPS(max9860_suspend, max9860_resume, NULL) }; |