]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ALSA: seq: add documentation for snd_seq_kernel_client_ctl
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Sat, 13 Aug 2016 01:13:33 +0000 (10:13 +0900)
committerTakashi Iwai <tiwai@suse.de>
Mon, 22 Aug 2016 09:11:02 +0000 (11:11 +0200)
This kernel API is used by kernel implementation. Currently, it's used for
kernel clients of ALSA sequencer, while it can be used for application
clients. The difference is just on address spaces of argument. In short,
this kernel API can be available for application client with data in kernel
space.

This commit adds a document about this.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/seq/seq_clientmgr.c

index d6d9419d8bacd28959a3b154ff76cdee54abaac4..37590f8320a324f629eb7efc91181321066c6f98 100644 (file)
@@ -2423,9 +2423,17 @@ int snd_seq_kernel_client_dispatch(int client, struct snd_seq_event * ev,
 
 EXPORT_SYMBOL(snd_seq_kernel_client_dispatch);
 
-/*
- * exported, called by kernel clients to perform same functions as with
- * userland ioctl() 
+/**
+ * snd_seq_kernel_client_ctl - operate a command for a client with data in
+ *                            kernel space.
+ * @clientid:  A numerical ID for a client.
+ * @cmd:       An ioctl(2) command for ALSA sequencer operation.
+ * @arg:       A pointer to data in kernel space.
+ *
+ * Against its name, both kernel/application client can be handled by this
+ * kernel API. A pointer of 'arg' argument should be in kernel space.
+ *
+ * Return: 0 at success. Negative error code at failure.
  */
 int snd_seq_kernel_client_ctl(int clientid, unsigned int cmd, void *arg)
 {