mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 03:24:19 +02:00
ASoC: tegra: tegra210_ahub: Fix compile warning with CONFIG_PM=n
Fix trivial compile warnings wrt unused functions by adding
__maybe_unused prefix:
sound/soc/tegra/tegra210_ahub.c:567:12: warning: 'tegra_ahub_runtime_suspend' defined but not used [-Wunused-function]
sound/soc/tegra/tegra210_ahub.c:579:12: warning: 'tegra_ahub_runtime_resume' defined but not used [-Wunused-function]
Fixes: 16e1bcc2ca ("ASoC: tegra: Add Tegra210 based AHUB driver")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20200803141850.23713-4-tiwai@suse.de
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
1337f2c5f1
commit
fafac55960
|
|
@ -564,7 +564,7 @@ static const struct of_device_id tegra_ahub_of_match[] = {
|
|||
};
|
||||
MODULE_DEVICE_TABLE(of, tegra_ahub_of_match);
|
||||
|
||||
static int tegra_ahub_runtime_suspend(struct device *dev)
|
||||
static int __maybe_unused tegra_ahub_runtime_suspend(struct device *dev)
|
||||
{
|
||||
struct tegra_ahub *ahub = dev_get_drvdata(dev);
|
||||
|
||||
|
|
@ -576,7 +576,7 @@ static int tegra_ahub_runtime_suspend(struct device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int tegra_ahub_runtime_resume(struct device *dev)
|
||||
static int __maybe_unused tegra_ahub_runtime_resume(struct device *dev)
|
||||
{
|
||||
struct tegra_ahub *ahub = dev_get_drvdata(dev);
|
||||
int err;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user