]> git.baikalelectronics.ru Git - kernel.git/commit
ASoC: ak4375: Fix unused function error
authorTakashi Iwai <tiwai@suse.de>
Wed, 5 Jan 2022 16:24:09 +0000 (17:24 +0100)
committerMark Brown <broonie@kernel.org>
Wed, 5 Jan 2022 16:32:32 +0000 (16:32 +0000)
commitd9334a646794303eda475ff81a6c9f53202e6102
treedd2350d99d0905c95d96188b8738a98986000592
parentf23ada744953e12f215df763614990fc30710e7a
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: e07fc3288788 ("ASoC: Add AK4375 support")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20220105162409.20635-1-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/ak4375.c