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>
This commit is contained in:
@@ -64,10 +64,9 @@ void snd_soc_jack_report(struct snd_soc_jack *jack, int status, int mask)
|
|||||||
int enable;
|
int enable;
|
||||||
int oldstatus;
|
int oldstatus;
|
||||||
|
|
||||||
if (!jack) {
|
if (!jack)
|
||||||
WARN_ON_ONCE(!jack);
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
codec = jack->card->codec;
|
codec = jack->card->codec;
|
||||||
|
|
||||||
mutex_lock(&codec->mutex);
|
mutex_lock(&codec->mutex);
|
||||||
|
Reference in New Issue
Block a user