diff options
author | Takashi Iwai <tiwai@suse.de> | 2019-04-12 13:10:14 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-04-12 13:51:22 +0300 |
commit | 6740ea6776e97274627e3c261469d1c4ba0a0cb5 (patch) | |
tree | dc886ed8527bd101e736d296e4d0df4ea02af146 /include/sound/seq_kernel.h | |
parent | 7c32ae35fbf9cffb7aa3736f44dec10c944ca18e (diff) | |
download | linux-6740ea6776e97274627e3c261469d1c4ba0a0cb5.tar.xz |
ALSA: seq: Simplify snd_seq_kernel_client_enqueue() helper
We have two helpers for queuing a sequencer event from the kernel
client, and both are used only from OSS sequencer layer without any
hop and atomic set. Let's simplify and unify two helpers into one.
No functional change, just a call pattern change.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include/sound/seq_kernel.h')
-rw-r--r-- | include/sound/seq_kernel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sound/seq_kernel.h b/include/sound/seq_kernel.h index 4b9ee3009aa0..c7a5433e109a 100644 --- a/include/sound/seq_kernel.h +++ b/include/sound/seq_kernel.h @@ -73,7 +73,8 @@ __printf(3, 4) int snd_seq_create_kernel_client(struct snd_card *card, int client_index, const char *name_fmt, ...); int snd_seq_delete_kernel_client(int client); -int snd_seq_kernel_client_enqueue(int client, struct snd_seq_event *ev, int atomic, int hop); +int snd_seq_kernel_client_enqueue(int client, struct snd_seq_event *ev, + struct file *file, bool blocking); int snd_seq_kernel_client_dispatch(int client, struct snd_seq_event *ev, int atomic, int hop); int snd_seq_kernel_client_ctl(int client, unsigned int cmd, void *arg); |