diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2019-10-18 08:19:08 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-10-19 09:18:22 +0200 |
commit | e6dcc92fcea07f23c13996b7bb6a2a32ed4c6ed5 (patch) | |
tree | fcaf402980b6c06ab843b9b0615c521d4d97893c /sound/firewire/oxfw/oxfw-pcm.c | |
parent | ALSA: firewire-lib: replace pointer callback to flush isoc contexts in AMDTP ... (diff) | |
download | linux-e6dcc92fcea07f23c13996b7bb6a2a32ed4c6ed5.tar.xz linux-e6dcc92fcea07f23c13996b7bb6a2a32ed4c6ed5.zip |
ALSA: firewire-lib: replace ack callback to flush isoc contexts in AMDTP domain
An isoc context for AMDTP stream is flushed to queue packet
by a call of pcm.ack. This commit extends this for AMDTP
domain.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Link: https://lore.kernel.org/r/20191018061911.24909-4-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/oxfw/oxfw-pcm.c')
-rw-r--r-- | sound/firewire/oxfw/oxfw-pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/firewire/oxfw/oxfw-pcm.c b/sound/firewire/oxfw/oxfw-pcm.c index 3be35dfcf270..74bd1811cec2 100644 --- a/sound/firewire/oxfw/oxfw-pcm.c +++ b/sound/firewire/oxfw/oxfw-pcm.c @@ -406,14 +406,14 @@ static int pcm_capture_ack(struct snd_pcm_substream *substream) { struct snd_oxfw *oxfw = substream->private_data; - return amdtp_stream_pcm_ack(&oxfw->tx_stream); + return amdtp_domain_stream_pcm_ack(&oxfw->domain, &oxfw->tx_stream); } static int pcm_playback_ack(struct snd_pcm_substream *substream) { struct snd_oxfw *oxfw = substream->private_data; - return amdtp_stream_pcm_ack(&oxfw->rx_stream); + return amdtp_domain_stream_pcm_ack(&oxfw->domain, &oxfw->rx_stream); } int snd_oxfw_create_pcm(struct snd_oxfw *oxfw) |