projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75af419
)
ASoC: qcom: lpass-sc7180: Add maybe_unused tag for system PM ops
author
Srinivasa Rao Mandadapu
<quic_srivasam@quicinc.com>
Tue, 29 Nov 2022 12:53:48 +0000
(18:23 +0530)
committer
Mark Brown
<broonie@kernel.org>
Tue, 29 Nov 2022 14:44:22 +0000
(14:44 +0000)
Add __maybe_unused tag for system PM ops suspend and resume.
This is required to fix allmodconfig compilation issue.
Fixes: a3a96e93cc88 ("ASoC: qcom: lpass-sc7280: Add system suspend/resume PM ops")
Signed-off-by: Srinivasa Rao Mandadapu <quic_srivasam@quicinc.com>
Link:
https://lore.kernel.org/r/1669726428-3140-1-git-send-email-quic_srivasam@quicinc.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/qcom/lpass-sc7180.c
patch
|
blob
|
history
diff --git
a/sound/soc/qcom/lpass-sc7180.c
b/sound/soc/qcom/lpass-sc7180.c
index b96b85ad9ff4acc2e31c1a46ea1759cc7316562c..41db6617e2ed788d2b0c64194ec54508695f6963 100644
(file)
--- a/
sound/soc/qcom/lpass-sc7180.c
+++ b/
sound/soc/qcom/lpass-sc7180.c
@@
-163,14
+163,14
@@
static int sc7180_lpass_exit(struct platform_device *pdev)
return 0;
}
-static int sc7180_lpass_dev_resume(struct device *dev)
+static int
__maybe_unused
sc7180_lpass_dev_resume(struct device *dev)
{
struct lpass_data *drvdata = dev_get_drvdata(dev);
return clk_bulk_prepare_enable(drvdata->num_clks, drvdata->clks);
}
-static int sc7180_lpass_dev_suspend(struct device *dev)
+static int
__maybe_unused
sc7180_lpass_dev_suspend(struct device *dev)
{
struct lpass_data *drvdata = dev_get_drvdata(dev);