Skip to content

Commit e4c35e7

Browse files
tiwaibroonie
authored andcommitted
ASoC: ak4375: Fix unused function error
A randconfig caught a compile warning that is now treated as a fatal error: sound/soc/codecs/ak4375.c:415:13: error: ‘ak4375_power_off’ defined but not used [-Werror=unused-function] where ak4375_power_off() is used only from the PM handler. As both suspend and resumes are already marked with __maybe_unused, let's rip off the superfluous ifdef CONFIG_PM, so that the error above can be avoided. Fixes: 53778b8 ("ASoC: Add AK4375 support") Signed-off-by: Takashi Iwai <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Mark Brown <[email protected]>
1 parent 570010b commit e4c35e7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sound/soc/codecs/ak4375.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@ static int ak4375_power_on(struct ak4375_priv *ak4375)
438438
return 0;
439439
}
440440

441-
#ifdef CONFIG_PM
442441
static int __maybe_unused ak4375_runtime_suspend(struct device *dev)
443442
{
444443
struct ak4375_priv *ak4375 = dev_get_drvdata(dev);
@@ -463,7 +462,6 @@ static int __maybe_unused ak4375_runtime_resume(struct device *dev)
463462

464463
return regcache_sync(ak4375->regmap);
465464
}
466-
#endif /* CONFIG_PM */
467465

468466
static const struct snd_soc_component_driver soc_codec_dev_ak4375 = {
469467
.controls = ak4375_snd_controls,

0 commit comments

Comments
 (0)