diff options
author | Takashi Sakamoto <o-takashi@sakamocchi.jp> | 2019-06-18 15:26:18 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-06-21 11:47:04 +0200 |
commit | b9434540dd8f702c2cf33b82674e027cb779146e (patch) | |
tree | fd766463809b7b53de694f4d230aeac203eaf092 /sound/firewire/digi00x/digi00x.h | |
parent | ALSA: firewire-motu: unify stop and release method for duplex streams (diff) | |
download | linux-b9434540dd8f702c2cf33b82674e027cb779146e.tar.xz linux-b9434540dd8f702c2cf33b82674e027cb779146e.zip |
ALSA: firewire-digi00x: unify stop and release method for duplex streams
>From callbacks for pcm and rawmidi interfaces, the functions to stop
and release duplex streams are called at the same time. This commit
merges the two functions.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to '')
-rw-r--r-- | sound/firewire/digi00x/digi00x.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/firewire/digi00x/digi00x.h b/sound/firewire/digi00x/digi00x.h index 3fb1c49f6f9e..2d026b5b0079 100644 --- a/sound/firewire/digi00x/digi00x.h +++ b/sound/firewire/digi00x/digi00x.h @@ -143,7 +143,6 @@ int snd_dg00x_stream_init_duplex(struct snd_dg00x *dg00x); int snd_dg00x_stream_reserve_duplex(struct snd_dg00x *dg00x, unsigned int rate); int snd_dg00x_stream_start_duplex(struct snd_dg00x *dg00x); void snd_dg00x_stream_stop_duplex(struct snd_dg00x *dg00x); -void snd_dg00x_stream_release_duplex(struct snd_dg00x *dg00x); void snd_dg00x_stream_update_duplex(struct snd_dg00x *dg00x); void snd_dg00x_stream_destroy_duplex(struct snd_dg00x *dg00x); |