diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2017-07-16 22:12:49 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-07-17 10:17:39 -0400 |
commit | 90982dcdda4f0163bc5e53f49301e155c2cd8547 (patch) | |
tree | 893ea7735622b9ecdfea25eddb16258d16e5b876 /sound/soc/au1x | |
parent | 5771a8c08880cdca3bfb4a3fc6d309d6bba20877 (diff) |
ASoC: au1x: psc-i2s: constify dev_pm_ops structure
This dev_pm_ops structure is only stored in the pm field of a
device_driver structure. This field is declared const, so
dev_pm_ops structures that have this property can be declared
as const also.
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/au1x')
-rw-r--r-- | sound/soc/au1x/psc-i2s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/au1x/psc-i2s.c b/sound/soc/au1x/psc-i2s.c index 0bf9d62b91a0..e6eec081eaae 100644 --- a/sound/soc/au1x/psc-i2s.c +++ b/sound/soc/au1x/psc-i2s.c | |||
@@ -392,7 +392,7 @@ static int au1xpsc_i2s_drvresume(struct device *dev) | |||
392 | return 0; | 392 | return 0; |
393 | } | 393 | } |
394 | 394 | ||
395 | static struct dev_pm_ops au1xpsci2s_pmops = { | 395 | static const struct dev_pm_ops au1xpsci2s_pmops = { |
396 | .suspend = au1xpsc_i2s_drvsuspend, | 396 | .suspend = au1xpsc_i2s_drvsuspend, |
397 | .resume = au1xpsc_i2s_drvresume, | 397 | .resume = au1xpsc_i2s_drvresume, |
398 | }; | 398 | }; |