diff options
author | Charles Keepax <[email protected]> | 2024-01-25 10:31:14 +0000 |
---|---|---|
committer | Mark Brown <[email protected]> | 2024-01-26 14:46:57 +0000 |
commit | 7a93a9abe44386b4caa0e67977f41b8c9f06b51c (patch) | |
tree | 3893b7dceaddd1c1500a8e5524b2fd7571fd329f | |
parent | a2e7cf55db781654fdb2d3b2529e28c4d93e24fc (diff) |
ASoC: cs42l43: Add pm_ptr around the power ops
Add missing pm_ptr around the power ops.
Suggested-by: Andy Shevchenko <[email protected]>
Signed-off-by: Charles Keepax <[email protected]>
Link: https://msgid.link/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/codecs/cs42l43.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/cs42l43.c b/sound/soc/codecs/cs42l43.c index d418c0b0ce9a..1852cb072bd0 100644 --- a/sound/soc/codecs/cs42l43.c +++ b/sound/soc/codecs/cs42l43.c @@ -2349,7 +2349,7 @@ MODULE_DEVICE_TABLE(platform, cs42l43_codec_id_table); static struct platform_driver cs42l43_codec_driver = { .driver = { .name = "cs42l43-codec", - .pm = &cs42l43_codec_pm_ops, + .pm = pm_ptr(&cs42l43_codec_pm_ops), }, .probe = cs42l43_codec_probe, |