mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-19 20:34:20 +08:00
ASoC: Stop checking for supplied widgets after we find the first
We don't really care how many widgets a supply is supplying, we just care if the number is non-zero. This didn't actually produce any improvement in the test cases I've been using but seems obviously sensible enough that I'm pushing it out anyway. We could do a similar thing for other widgets but this may be unhelpful for further refactorings Liam was working on aiming to allow us to identify connected audio paths. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
f3bf3e456a
commit
f68d7e1687
@ -851,7 +851,6 @@ static int dapm_dac_check_power(struct snd_soc_dapm_widget *w)
|
|||||||
static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
|
static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
|
||||||
{
|
{
|
||||||
struct snd_soc_dapm_path *path;
|
struct snd_soc_dapm_path *path;
|
||||||
int power = 0;
|
|
||||||
|
|
||||||
DAPM_UPDATE_STAT(w, power_checks);
|
DAPM_UPDATE_STAT(w, power_checks);
|
||||||
|
|
||||||
@ -869,15 +868,13 @@ static int dapm_supply_check_power(struct snd_soc_dapm_widget *w)
|
|||||||
if (!path->sink)
|
if (!path->sink)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (dapm_widget_power_check(path->sink)) {
|
if (dapm_widget_power_check(path->sink))
|
||||||
power = 1;
|
return 1;
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dapm_clear_walk(w->dapm);
|
dapm_clear_walk(w->dapm);
|
||||||
|
|
||||||
return power;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
|
static int dapm_always_on_check_power(struct snd_soc_dapm_widget *w)
|
||||||
|
Loading…
Reference in New Issue
Block a user