mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
ASoC: mt8195: remove unnecessary CONFIG_PM
The unnecessary conditional inclusion caused the following warning.
>> sound/soc/mediatek/mt8195/mt8195-afe-pcm.c:3260:32: warning: unused
>> variable 'mt8195_afe_pm_ops' [-Wunused-const-variable]
static const struct dev_pm_ops mt8195_afe_pm_ops = {
^
1 warning generated.
Because runtime_pm already handles the case without CONFIG_PM, we
can remove CONFIG_PM condition.
Fixes: 6746cc8582
("ASoC: mediatek: mt8195: add platform driver")
Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>
Reported-by: kernel test robot <lkp@intel.com>
Link: https://lore.kernel.org/r/20210902071440.6087-1-trevor.wu@mediatek.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
5767271861
commit
2b9b42c847
@ -3264,9 +3264,7 @@ static struct platform_driver mt8195_afe_pcm_driver = {
|
||||
.driver = {
|
||||
.name = "mt8195-audio",
|
||||
.of_match_table = mt8195_afe_pcm_dt_match,
|
||||
#ifdef CONFIG_PM
|
||||
.pm = &mt8195_afe_pm_ops,
|
||||
#endif
|
||||
},
|
||||
.probe = mt8195_afe_pcm_dev_probe,
|
||||
.remove = mt8195_afe_pcm_dev_remove,
|
||||
|
Loading…
Reference in New Issue
Block a user