Additional debug code to where the *_trigger()'s finish.

This commit is contained in:
Hin-Tak Leung 2021-04-23 21:03:22 +01:00
parent b380ebfb26
commit f8abf23b1e
3 changed files with 11 additions and 0 deletions

View file

@ -1286,6 +1286,9 @@ int ac101_trigger(struct snd_pcm_substream *substream, int cmd,
default: default:
ret = -EINVAL; ret = -EINVAL;
} }
AC101_DBG("stream=%s cmd=%d;finished %d\n",
snd_pcm_stream_str(substream),
cmd, ret);
return ret; return ret;
} }

View file

@ -1091,6 +1091,10 @@ static int ac108_trigger(struct snd_pcm_substream *substream, int cmd,
__ret: __ret:
spin_unlock_irqrestore(&ac10x->lock, flags); spin_unlock_irqrestore(&ac10x->lock, flags);
dev_dbg(dai->dev, "%s() stream=%s cmd=%d; finished %d\n",
__FUNCTION__,
snd_pcm_stream_str(substream),
cmd, ret);
return ret; return ret;
} }

View file

@ -245,6 +245,10 @@ static int seeed_voice_card_trigger(struct snd_pcm_substream *substream, int cmd
ret = -EINVAL; ret = -EINVAL;
} }
dev_dbg(rtd->card->dev, "%s() stream=%s cmd=%d play:%d, capt:%d;finished %d\n",
__FUNCTION__, snd_pcm_stream_str(substream), cmd,
dai->playback_active, dai->capture_active, ret);
return ret; return ret;
} }