Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: rockchip: use __maybe_unused to hide st_irq_syscfg_resume

The rockchip spdif driver uses SIMPLE_DEV_PM_OPS to conditionally
set its power management functions, but we get a warning
about rk_spdif_runtime_resume being unused when CONFIG_PM is not
set:

sound/soc/rockchip/rockchip_spdif.c:67:12: error: 'rk_spdif_runtime_resume' defined but not used [-Werror=unused-function]

This adds a __maybe_unused annotation so the compiler knows
it can silently drop it instead of warning.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Arnd Bergmann and committed by
Mark Brown
d8fc2198 ea2e5b96

+2 -2
+2 -2
sound/soc/rockchip/rockchip_spdif.c
··· 54 54 }; 55 55 MODULE_DEVICE_TABLE(of, rk_spdif_match); 56 56 57 - static int rk_spdif_runtime_suspend(struct device *dev) 57 + static int __maybe_unused rk_spdif_runtime_suspend(struct device *dev) 58 58 { 59 59 struct rk_spdif_dev *spdif = dev_get_drvdata(dev); 60 60 ··· 64 64 return 0; 65 65 } 66 66 67 - static int rk_spdif_runtime_resume(struct device *dev) 67 + static int __maybe_unused rk_spdif_runtime_resume(struct device *dev) 68 68 { 69 69 struct rk_spdif_dev *spdif = dev_get_drvdata(dev); 70 70 int ret;