Commit 7b153760 authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Mark Brown

ASoC: fsl_aud2htx: mark PM functions as __maybe_unused

When CONFIG_PM is disabled, we get a warning for unused functions:

sound/soc/fsl/fsl_aud2htx.c:261:12: error: unused function 'fsl_aud2htx_runtime_suspend' [-Werror,-Wunused-function]
static int fsl_aud2htx_runtime_suspend(struct device *dev)
sound/soc/fsl/fsl_aud2htx.c:271:12: error: unused function 'fsl_aud2htx_runtime_resume' [-Werror,-Wunused-function]
static int fsl_aud2htx_runtime_resume(struct device *dev)

Mark these as __maybe_unused to avoid the warning without adding
an #ifdef.

Fixes: 8a24c834 ("ASoC: fsl_aud2htx: Add aud2htx module driver")
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarNicolin Chen <nicoleotsuka@gmail.com>
Link: https://lore.kernel.org/r/20201203222900.1042578-1-arnd@kernel.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent aa6cc97c
...@@ -258,7 +258,7 @@ static int fsl_aud2htx_remove(struct platform_device *pdev) ...@@ -258,7 +258,7 @@ static int fsl_aud2htx_remove(struct platform_device *pdev)
return 0; return 0;
} }
static int fsl_aud2htx_runtime_suspend(struct device *dev) static int __maybe_unused fsl_aud2htx_runtime_suspend(struct device *dev)
{ {
struct fsl_aud2htx *aud2htx = dev_get_drvdata(dev); struct fsl_aud2htx *aud2htx = dev_get_drvdata(dev);
...@@ -268,7 +268,7 @@ static int fsl_aud2htx_runtime_suspend(struct device *dev) ...@@ -268,7 +268,7 @@ static int fsl_aud2htx_runtime_suspend(struct device *dev)
return 0; return 0;
} }
static int fsl_aud2htx_runtime_resume(struct device *dev) static int __maybe_unused fsl_aud2htx_runtime_resume(struct device *dev)
{ {
struct fsl_aud2htx *aud2htx = dev_get_drvdata(dev); struct fsl_aud2htx *aud2htx = dev_get_drvdata(dev);
int ret; int ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment