diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-07-17 05:54:49 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2015-07-17 14:14:48 +0300 |
commit | 42d1b8ce2973c2f5956f4d4e4af002986ccc5748 (patch) | |
tree | 30196bd9df22e6336dd1eb680cf156180816fbfe /sound/soc/codecs/wm8962.c | |
parent | d770e558e21961ad6cfdf0ff7df0eb5d7d4f0754 (diff) | |
download | linux-42d1b8ce2973c2f5956f4d4e4af002986ccc5748.tar.xz |
ASoC: Constify dev_pm_ops variables
The dev_pm_ops variables are not modified after initialization in these
drivers, so make them const.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wm8962.c')
-rw-r--r-- | sound/soc/codecs/wm8962.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm8962.c b/sound/soc/codecs/wm8962.c index c5748fd4f296..ad16414b28e7 100644 --- a/sound/soc/codecs/wm8962.c +++ b/sound/soc/codecs/wm8962.c @@ -3859,7 +3859,7 @@ static int wm8962_runtime_suspend(struct device *dev) } #endif -static struct dev_pm_ops wm8962_pm = { +static const struct dev_pm_ops wm8962_pm = { SET_RUNTIME_PM_OPS(wm8962_runtime_suspend, wm8962_runtime_resume, NULL) }; |