Message ID | 20240125103117.2622095-4-ckeepax@opensource.cirrus.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 7a93a9abe44386b4caa0e67977f41b8c9f06b51c |
Headers | show |
Series | [v2,1/7] ASoC: cs42l43: Tidy up header includes | expand |
On Thu, Jan 25, 2024 at 12:31 PM Charles Keepax <ckeepax@opensource.cirrus.com> wrote: > > Add missing pm_ptr around the power ops. pm_ptr() (here and in the Subject), but it's a minor one.
diff --git a/sound/soc/codecs/cs42l43.c b/sound/soc/codecs/cs42l43.c index d418c0b0ce9aa..1852cb072bd0e 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,
Add missing pm_ptr around the power ops. Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com> --- Changes since v1: - Added commit message Thanks, Charles sound/soc/codecs/cs42l43.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)