mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
ASoC: qcom: lpass-sc7180: Add maybe_unused tag for system PM ops
Add __maybe_unused tag for system PM ops suspend and resume.
This is required to fix allmodconfig compilation issue.
Fixes: a3a96e93cc
("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>
This commit is contained in:
parent
75af419919
commit
e8679db297
1 changed files with 2 additions and 2 deletions
|
@ -163,14 +163,14 @@ static int sc7180_lpass_exit(struct platform_device *pdev)
|
||||||
return 0;
|
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);
|
struct lpass_data *drvdata = dev_get_drvdata(dev);
|
||||||
|
|
||||||
return clk_bulk_prepare_enable(drvdata->num_clks, drvdata->clks);
|
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);
|
struct lpass_data *drvdata = dev_get_drvdata(dev);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue