From: Sachin Kamat Date: Mon, 18 Feb 2013 11:32:12 +0000 (+0530) Subject: ASoC: max98090: Make struct dev_pm_ops const X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3e12af7e139275e5822383e210c86e0ff1ea185c;p=deliverable%2Flinux.git 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 Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/max98090.c b/sound/soc/codecs/max98090.c index fef370e03305..1cf017f2f587 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) };