1
0
Fork 0

ASoC: Allow reporting of NULL jacks

Follow the core jack implementation and allow reporting on the status
of NULL jacks, avoiding the need to check in detection implementations.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
wifi-calibration
Mark Brown 2010-03-29 20:31:14 +01:00
parent ba0a24e738
commit 3a278a0c65
1 changed files with 2 additions and 3 deletions

View File

@ -64,10 +64,9 @@ void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
int enable;
int oldstatus;
if (!jack) {
WARN_ON_ONCE(!jack);
if (!jack)
return;
}
codec = jack->card->codec;
mutex_lock(&codec->mutex);