summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2013-02-18 17:02:12 +0530
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-03-04 11:13:14 +0800
commit3e12af7e139275e5822383e210c86e0ff1ea185c (patch)
tree86cedc71cf0774e1d2ef6de64d722498e6dcba30 /sound
parenta3a6cc84652d82ff795c519c6187d37baa1d9697 (diff)
downloadlinux-0-day-3e12af7e139275e5822383e210c86e0ff1ea185c.tar.gz
linux-0-day-3e12af7e139275e5822383e210c86e0ff1ea185c.tar.xz
ASoC: max98090: Make struct dev_pm_ops const
Silences the following checkpatch warning: WARNING: struct dev_pm_ops should normally be const. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound')
-rwxr-xr-xsound/soc/codecs/max98090.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/max98090.c b/sound/soc/codecs/max98090.c
index fef370e033055..1cf017f2f587f 100755
--- a/sound/soc/codecs/max98090.c
+++ b/sound/soc/codecs/max98090.c
@@ -2362,7 +2362,7 @@ static int max98090_runtime_suspend(struct device *dev)
return 0;
}
-static struct dev_pm_ops max98090_pm = {
+static const struct dev_pm_ops max98090_pm = {
SET_RUNTIME_PM_OPS(max98090_runtime_suspend,
max98090_runtime_resume, NULL)
};