2 * Information interface for ALSA driver
3 * Copyright (c) by Jaroslav Kysela <perex@suse.cz>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <sound/driver.h>
23 #include <linux/init.h>
24 #include <linux/vmalloc.h>
25 #include <linux/time.h>
26 #include <linux/smp_lock.h>
27 #include <linux/string.h>
28 #include <sound/core.h>
29 #include <sound/minors.h>
30 #include <sound/info.h>
31 #include <sound/version.h>
32 #include <linux/proc_fs.h>
33 #include <linux/devfs_fs_kernel.h>
40 int snd_info_check_reserved_words(const char *str
)
42 static char *reserved
[] =
57 char **xstr
= reserved
;
60 if (!strcmp(*xstr
, str
))
64 if (!strncmp(str
, "card", 4))
71 static DECLARE_MUTEX(info_mutex
);
73 typedef struct _snd_info_private_data
{
74 snd_info_buffer_t
*rbuffer
;
75 snd_info_buffer_t
*wbuffer
;
76 snd_info_entry_t
*entry
;
77 void *file_private_data
;
78 } snd_info_private_data_t
;
80 static int snd_info_version_init(void);
81 static int snd_info_version_done(void);
85 * snd_iprintf - printf on the procfs buffer
86 * @buffer: the procfs buffer
87 * @fmt: the printf format
89 * Outputs the string on the procfs buffer just like printf().
91 * Returns the size of output string.
93 int snd_iprintf(snd_info_buffer_t
* buffer
, char *fmt
,...)
98 if (buffer
->stop
|| buffer
->error
)
100 len
= buffer
->len
- buffer
->size
;
102 res
= vsnprintf(buffer
->curr
, len
, fmt
, args
);
117 static struct proc_dir_entry
*snd_proc_root
= NULL
;
118 snd_info_entry_t
*snd_seq_root
= NULL
;
119 #ifdef CONFIG_SND_OSSEMUL
120 snd_info_entry_t
*snd_oss_root
= NULL
;
123 static inline void snd_info_entry_prepare(struct proc_dir_entry
*de
)
125 de
->owner
= THIS_MODULE
;
128 static void snd_remove_proc_entry(struct proc_dir_entry
*parent
,
129 struct proc_dir_entry
*de
)
132 remove_proc_entry(de
->name
, parent
);
135 static loff_t
snd_info_entry_llseek(struct file
*file
, loff_t offset
, int orig
)
137 snd_info_private_data_t
*data
;
138 struct snd_info_entry
*entry
;
141 data
= file
->private_data
;
144 switch (entry
->content
) {
145 case SNDRV_INFO_CONTENT_TEXT
:
147 case 0: /* SEEK_SET */
148 file
->f_pos
= offset
;
151 case 1: /* SEEK_CUR */
152 file
->f_pos
+= offset
;
155 case 2: /* SEEK_END */
161 case SNDRV_INFO_CONTENT_DATA
:
162 if (entry
->c
.ops
->llseek
) {
163 ret
= entry
->c
.ops
->llseek(entry
,
164 data
->file_private_data
,
176 static ssize_t
snd_info_entry_read(struct file
*file
, char __user
*buffer
,
177 size_t count
, loff_t
* offset
)
179 snd_info_private_data_t
*data
;
180 struct snd_info_entry
*entry
;
181 snd_info_buffer_t
*buf
;
185 data
= file
->private_data
;
186 snd_assert(data
!= NULL
, return -ENXIO
);
188 if (pos
< 0 || (long) pos
!= pos
|| (ssize_t
) count
< 0)
190 if ((unsigned long) pos
+ (unsigned long) count
< (unsigned long) pos
)
193 switch (entry
->content
) {
194 case SNDRV_INFO_CONTENT_TEXT
:
198 if (pos
>= buf
->size
)
200 size
= buf
->size
- pos
;
201 size
= min(count
, size
);
202 if (copy_to_user(buffer
, buf
->buffer
+ pos
, size
))
205 case SNDRV_INFO_CONTENT_DATA
:
206 if (entry
->c
.ops
->read
)
207 size
= entry
->c
.ops
->read(entry
,
208 data
->file_private_data
,
209 file
, buffer
, count
, pos
);
212 if ((ssize_t
) size
> 0)
213 *offset
= pos
+ size
;
217 static ssize_t
snd_info_entry_write(struct file
*file
, const char __user
*buffer
,
218 size_t count
, loff_t
* offset
)
220 snd_info_private_data_t
*data
;
221 struct snd_info_entry
*entry
;
222 snd_info_buffer_t
*buf
;
226 data
= file
->private_data
;
227 snd_assert(data
!= NULL
, return -ENXIO
);
230 if (pos
< 0 || (long) pos
!= pos
|| (ssize_t
) count
< 0)
232 if ((unsigned long) pos
+ (unsigned long) count
< (unsigned long) pos
)
234 switch (entry
->content
) {
235 case SNDRV_INFO_CONTENT_TEXT
:
241 size
= buf
->len
- pos
;
242 size
= min(count
, size
);
243 if (copy_from_user(buf
->buffer
+ pos
, buffer
, size
))
245 if ((long)buf
->size
< pos
+ size
)
246 buf
->size
= pos
+ size
;
248 case SNDRV_INFO_CONTENT_DATA
:
249 if (entry
->c
.ops
->write
)
250 size
= entry
->c
.ops
->write(entry
,
251 data
->file_private_data
,
252 file
, buffer
, count
, pos
);
255 if ((ssize_t
) size
> 0)
256 *offset
= pos
+ size
;
260 static int snd_info_entry_open(struct inode
*inode
, struct file
*file
)
262 snd_info_entry_t
*entry
;
263 snd_info_private_data_t
*data
;
264 snd_info_buffer_t
*buffer
;
265 struct proc_dir_entry
*p
;
270 entry
= p
== NULL
? NULL
: (snd_info_entry_t
*)p
->data
;
271 if (entry
== NULL
|| entry
->disconnected
) {
275 if (!try_module_get(entry
->module
)) {
279 mode
= file
->f_flags
& O_ACCMODE
;
280 if (mode
== O_RDONLY
|| mode
== O_RDWR
) {
281 if ((entry
->content
== SNDRV_INFO_CONTENT_TEXT
&&
282 !entry
->c
.text
.read_size
) ||
283 (entry
->content
== SNDRV_INFO_CONTENT_DATA
&&
284 entry
->c
.ops
->read
== NULL
)) {
289 if (mode
== O_WRONLY
|| mode
== O_RDWR
) {
290 if ((entry
->content
== SNDRV_INFO_CONTENT_TEXT
&&
291 !entry
->c
.text
.write_size
) ||
292 (entry
->content
== SNDRV_INFO_CONTENT_DATA
&&
293 entry
->c
.ops
->write
== NULL
)) {
298 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
304 switch (entry
->content
) {
305 case SNDRV_INFO_CONTENT_TEXT
:
306 if (mode
== O_RDONLY
|| mode
== O_RDWR
) {
307 buffer
= kzalloc(sizeof(*buffer
), GFP_KERNEL
);
308 if (buffer
== NULL
) {
313 buffer
->len
= (entry
->c
.text
.read_size
+
314 (PAGE_SIZE
- 1)) & ~(PAGE_SIZE
- 1);
315 buffer
->buffer
= vmalloc(buffer
->len
);
316 if (buffer
->buffer
== NULL
) {
322 buffer
->curr
= buffer
->buffer
;
323 data
->rbuffer
= buffer
;
325 if (mode
== O_WRONLY
|| mode
== O_RDWR
) {
326 buffer
= kzalloc(sizeof(*buffer
), GFP_KERNEL
);
327 if (buffer
== NULL
) {
328 if (mode
== O_RDWR
) {
329 vfree(data
->rbuffer
->buffer
);
330 kfree(data
->rbuffer
);
336 buffer
->len
= (entry
->c
.text
.write_size
+
337 (PAGE_SIZE
- 1)) & ~(PAGE_SIZE
- 1);
338 buffer
->buffer
= vmalloc(buffer
->len
);
339 if (buffer
->buffer
== NULL
) {
340 if (mode
== O_RDWR
) {
341 vfree(data
->rbuffer
->buffer
);
342 kfree(data
->rbuffer
);
349 buffer
->curr
= buffer
->buffer
;
350 data
->wbuffer
= buffer
;
353 case SNDRV_INFO_CONTENT_DATA
: /* data */
354 if (entry
->c
.ops
->open
) {
355 if ((err
= entry
->c
.ops
->open(entry
, mode
,
356 &data
->file_private_data
)) < 0) {
363 file
->private_data
= data
;
365 if (entry
->content
== SNDRV_INFO_CONTENT_TEXT
&&
366 (mode
== O_RDONLY
|| mode
== O_RDWR
)) {
367 if (entry
->c
.text
.read
) {
368 down(&entry
->access
);
369 entry
->c
.text
.read(entry
, data
->rbuffer
);
376 module_put(entry
->module
);
382 static int snd_info_entry_release(struct inode
*inode
, struct file
*file
)
384 snd_info_entry_t
*entry
;
385 snd_info_private_data_t
*data
;
388 mode
= file
->f_flags
& O_ACCMODE
;
389 data
= file
->private_data
;
391 switch (entry
->content
) {
392 case SNDRV_INFO_CONTENT_TEXT
:
393 if (mode
== O_RDONLY
|| mode
== O_RDWR
) {
394 vfree(data
->rbuffer
->buffer
);
395 kfree(data
->rbuffer
);
397 if (mode
== O_WRONLY
|| mode
== O_RDWR
) {
398 if (entry
->c
.text
.write
) {
399 entry
->c
.text
.write(entry
, data
->wbuffer
);
400 if (data
->wbuffer
->error
) {
401 snd_printk(KERN_WARNING
"data write error to %s (%i)\n",
403 data
->wbuffer
->error
);
406 vfree(data
->wbuffer
->buffer
);
407 kfree(data
->wbuffer
);
410 case SNDRV_INFO_CONTENT_DATA
:
411 if (entry
->c
.ops
->release
)
412 entry
->c
.ops
->release(entry
, mode
,
413 data
->file_private_data
);
416 module_put(entry
->module
);
421 static unsigned int snd_info_entry_poll(struct file
*file
, poll_table
* wait
)
423 snd_info_private_data_t
*data
;
424 struct snd_info_entry
*entry
;
427 data
= file
->private_data
;
432 switch (entry
->content
) {
433 case SNDRV_INFO_CONTENT_DATA
:
434 if (entry
->c
.ops
->poll
)
435 return entry
->c
.ops
->poll(entry
,
436 data
->file_private_data
,
438 if (entry
->c
.ops
->read
)
439 mask
|= POLLIN
| POLLRDNORM
;
440 if (entry
->c
.ops
->write
)
441 mask
|= POLLOUT
| POLLWRNORM
;
447 static inline int _snd_info_entry_ioctl(struct inode
*inode
, struct file
*file
,
448 unsigned int cmd
, unsigned long arg
)
450 snd_info_private_data_t
*data
;
451 struct snd_info_entry
*entry
;
453 data
= file
->private_data
;
457 switch (entry
->content
) {
458 case SNDRV_INFO_CONTENT_DATA
:
459 if (entry
->c
.ops
->ioctl
)
460 return entry
->c
.ops
->ioctl(entry
,
461 data
->file_private_data
,
468 /* FIXME: need to unlock BKL to allow preemption */
469 static int snd_info_entry_ioctl(struct inode
*inode
, struct file
*file
,
470 unsigned int cmd
, unsigned long arg
)
474 err
= _snd_info_entry_ioctl(inode
, file
, cmd
, arg
);
479 static int snd_info_entry_mmap(struct file
*file
, struct vm_area_struct
*vma
)
481 struct inode
*inode
= file
->f_dentry
->d_inode
;
482 snd_info_private_data_t
*data
;
483 struct snd_info_entry
*entry
;
485 data
= file
->private_data
;
489 switch (entry
->content
) {
490 case SNDRV_INFO_CONTENT_DATA
:
491 if (entry
->c
.ops
->mmap
)
492 return entry
->c
.ops
->mmap(entry
,
493 data
->file_private_data
,
500 static struct file_operations snd_info_entry_operations
=
502 .owner
= THIS_MODULE
,
503 .llseek
= snd_info_entry_llseek
,
504 .read
= snd_info_entry_read
,
505 .write
= snd_info_entry_write
,
506 .poll
= snd_info_entry_poll
,
507 .ioctl
= snd_info_entry_ioctl
,
508 .mmap
= snd_info_entry_mmap
,
509 .open
= snd_info_entry_open
,
510 .release
= snd_info_entry_release
,
514 * snd_create_proc_entry - create a procfs entry
515 * @name: the name of the proc file
516 * @mode: the file permission bits, S_Ixxx
517 * @parent: the parent proc-directory entry
519 * Creates a new proc file entry with the given name and permission
520 * on the given directory.
522 * Returns the pointer of new instance or NULL on failure.
524 static struct proc_dir_entry
*snd_create_proc_entry(const char *name
, mode_t mode
,
525 struct proc_dir_entry
*parent
)
527 struct proc_dir_entry
*p
;
528 p
= create_proc_entry(name
, mode
, parent
);
530 snd_info_entry_prepare(p
);
534 int __init
snd_info_init(void)
536 struct proc_dir_entry
*p
;
538 p
= snd_create_proc_entry("asound", S_IFDIR
| S_IRUGO
| S_IXUGO
, &proc_root
);
542 #ifdef CONFIG_SND_OSSEMUL
544 snd_info_entry_t
*entry
;
545 if ((entry
= snd_info_create_module_entry(THIS_MODULE
, "oss", NULL
)) == NULL
)
547 entry
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
548 if (snd_info_register(entry
) < 0) {
549 snd_info_free_entry(entry
);
552 snd_oss_root
= entry
;
555 #if defined(CONFIG_SND_SEQUENCER) || defined(CONFIG_SND_SEQUENCER_MODULE)
557 snd_info_entry_t
*entry
;
558 if ((entry
= snd_info_create_module_entry(THIS_MODULE
, "seq", NULL
)) == NULL
)
560 entry
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
561 if (snd_info_register(entry
) < 0) {
562 snd_info_free_entry(entry
);
565 snd_seq_root
= entry
;
568 snd_info_version_init();
569 snd_memory_info_init();
570 snd_minor_info_init();
571 snd_minor_info_oss_init();
572 snd_card_info_init();
576 int __exit
snd_info_done(void)
578 snd_card_info_done();
579 snd_minor_info_oss_done();
580 snd_minor_info_done();
581 snd_memory_info_done();
582 snd_info_version_done();
584 #if defined(CONFIG_SND_SEQUENCER) || defined(CONFIG_SND_SEQUENCER_MODULE)
586 snd_info_unregister(snd_seq_root
);
588 #ifdef CONFIG_SND_OSSEMUL
590 snd_info_unregister(snd_oss_root
);
592 snd_remove_proc_entry(&proc_root
, snd_proc_root
);
603 * create a card proc file
606 int snd_info_card_create(snd_card_t
* card
)
609 snd_info_entry_t
*entry
;
611 snd_assert(card
!= NULL
, return -ENXIO
);
613 sprintf(str
, "card%i", card
->number
);
614 if ((entry
= snd_info_create_module_entry(card
->module
, str
, NULL
)) == NULL
)
616 entry
->mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
617 if (snd_info_register(entry
) < 0) {
618 snd_info_free_entry(entry
);
621 card
->proc_root
= entry
;
626 * register the card proc file
629 int snd_info_card_register(snd_card_t
* card
)
631 struct proc_dir_entry
*p
;
633 snd_assert(card
!= NULL
, return -ENXIO
);
635 if (!strcmp(card
->id
, card
->proc_root
->name
))
638 p
= proc_symlink(card
->id
, snd_proc_root
, card
->proc_root
->name
);
641 card
->proc_root_link
= p
;
646 * de-register the card proc file
649 int snd_info_card_free(snd_card_t
* card
)
651 snd_assert(card
!= NULL
, return -ENXIO
);
652 if (card
->proc_root_link
) {
653 snd_remove_proc_entry(snd_proc_root
, card
->proc_root_link
);
654 card
->proc_root_link
= NULL
;
656 if (card
->proc_root
) {
657 snd_info_unregister(card
->proc_root
);
658 card
->proc_root
= NULL
;
665 * snd_info_get_line - read one line from the procfs buffer
666 * @buffer: the procfs buffer
667 * @line: the buffer to store
668 * @len: the max. buffer size - 1
670 * Reads one line from the buffer and stores the string.
672 * Returns zero if successful, or 1 if error or EOF.
674 int snd_info_get_line(snd_info_buffer_t
* buffer
, char *line
, int len
)
678 if (len
<= 0 || buffer
->stop
|| buffer
->error
)
683 if ((buffer
->curr
- buffer
->buffer
) >= (long)buffer
->size
) {
689 if ((buffer
->curr
- buffer
->buffer
) >= (long)buffer
->size
) {
694 while (c
!= '\n' && !buffer
->stop
) {
696 if ((buffer
->curr
- buffer
->buffer
) >= (long)buffer
->size
) {
705 * snd_info_get_str - parse a string token
706 * @dest: the buffer to store the string token
707 * @src: the original string
708 * @len: the max. length of token - 1
710 * Parses the original string and copy a token to the given
713 * Returns the updated pointer of the original string so that
714 * it can be used for the next call.
716 char *snd_info_get_str(char *dest
, char *src
, int len
)
720 while (*src
== ' ' || *src
== '\t')
722 if (*src
== '"' || *src
== '\'') {
724 while (--len
> 0 && *src
&& *src
!= c
) {
730 while (--len
> 0 && *src
&& *src
!= ' ' && *src
!= '\t') {
735 while (*src
== ' ' || *src
== '\t')
741 * snd_info_create_entry - create an info entry
742 * @name: the proc file name
744 * Creates an info entry with the given file name and initializes as
747 * Usually called from other functions such as
748 * snd_info_create_card_entry().
750 * Returns the pointer of the new instance, or NULL on failure.
752 static snd_info_entry_t
*snd_info_create_entry(const char *name
)
754 snd_info_entry_t
*entry
;
755 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
758 entry
->name
= kstrdup(name
, GFP_KERNEL
);
759 if (entry
->name
== NULL
) {
763 entry
->mode
= S_IFREG
| S_IRUGO
;
764 entry
->content
= SNDRV_INFO_CONTENT_TEXT
;
765 init_MUTEX(&entry
->access
);
770 * snd_info_create_module_entry - create an info entry for the given module
771 * @module: the module pointer
772 * @name: the file name
773 * @parent: the parent directory
775 * Creates a new info entry and assigns it to the given module.
777 * Returns the pointer of the new instance, or NULL on failure.
779 snd_info_entry_t
*snd_info_create_module_entry(struct module
* module
,
781 snd_info_entry_t
*parent
)
783 snd_info_entry_t
*entry
= snd_info_create_entry(name
);
785 entry
->module
= module
;
786 entry
->parent
= parent
;
792 * snd_info_create_card_entry - create an info entry for the given card
793 * @card: the card instance
794 * @name: the file name
795 * @parent: the parent directory
797 * Creates a new info entry and assigns it to the given card.
799 * Returns the pointer of the new instance, or NULL on failure.
801 snd_info_entry_t
*snd_info_create_card_entry(snd_card_t
* card
,
803 snd_info_entry_t
* parent
)
805 snd_info_entry_t
*entry
= snd_info_create_entry(name
);
807 entry
->module
= card
->module
;
809 entry
->parent
= parent
;
814 static int snd_info_dev_free_entry(snd_device_t
*device
)
816 snd_info_entry_t
*entry
= device
->device_data
;
817 snd_info_free_entry(entry
);
821 static int snd_info_dev_register_entry(snd_device_t
*device
)
823 snd_info_entry_t
*entry
= device
->device_data
;
824 return snd_info_register(entry
);
827 static int snd_info_dev_disconnect_entry(snd_device_t
*device
)
829 snd_info_entry_t
*entry
= device
->device_data
;
830 entry
->disconnected
= 1;
834 static int snd_info_dev_unregister_entry(snd_device_t
*device
)
836 snd_info_entry_t
*entry
= device
->device_data
;
837 return snd_info_unregister(entry
);
841 * snd_card_proc_new - create an info entry for the given card
842 * @card: the card instance
843 * @name: the file name
844 * @entryp: the pointer to store the new info entry
846 * Creates a new info entry and assigns it to the given card.
847 * Unlike snd_info_create_card_entry(), this function registers the
848 * info entry as an ALSA device component, so that it can be
849 * unregistered/released without explicit call.
850 * Also, you don't have to register this entry via snd_info_register(),
851 * since this will be registered by snd_card_register() automatically.
853 * The parent is assumed as card->proc_root.
855 * For releasing this entry, use snd_device_free() instead of
856 * snd_info_free_entry().
858 * Returns zero if successful, or a negative error code on failure.
860 int snd_card_proc_new(snd_card_t
*card
, const char *name
,
861 snd_info_entry_t
**entryp
)
863 static snd_device_ops_t ops
= {
864 .dev_free
= snd_info_dev_free_entry
,
865 .dev_register
= snd_info_dev_register_entry
,
866 .dev_disconnect
= snd_info_dev_disconnect_entry
,
867 .dev_unregister
= snd_info_dev_unregister_entry
869 snd_info_entry_t
*entry
;
872 entry
= snd_info_create_card_entry(card
, name
, card
->proc_root
);
875 if ((err
= snd_device_new(card
, SNDRV_DEV_INFO
, entry
, &ops
)) < 0) {
876 snd_info_free_entry(entry
);
885 * snd_info_free_entry - release the info entry
886 * @entry: the info entry
888 * Releases the info entry. Don't call this after registered.
890 void snd_info_free_entry(snd_info_entry_t
* entry
)
895 if (entry
->private_free
)
896 entry
->private_free(entry
);
901 * snd_info_register - register the info entry
902 * @entry: the info entry
904 * Registers the proc info entry.
906 * Returns zero if successful, or a negative error code on failure.
908 int snd_info_register(snd_info_entry_t
* entry
)
910 struct proc_dir_entry
*root
, *p
= NULL
;
912 snd_assert(entry
!= NULL
, return -ENXIO
);
913 root
= entry
->parent
== NULL
? snd_proc_root
: entry
->parent
->p
;
915 p
= snd_create_proc_entry(entry
->name
, entry
->mode
, root
);
920 p
->owner
= entry
->module
;
921 if (!S_ISDIR(entry
->mode
))
922 p
->proc_fops
= &snd_info_entry_operations
;
923 p
->size
= entry
->size
;
931 * snd_info_unregister - de-register the info entry
932 * @entry: the info entry
934 * De-registers the info entry and releases the instance.
936 * Returns zero if successful, or a negative error code on failure.
938 int snd_info_unregister(snd_info_entry_t
* entry
)
940 struct proc_dir_entry
*root
;
942 snd_assert(entry
!= NULL
, return -ENXIO
);
943 snd_assert(entry
->p
!= NULL
, return -ENXIO
);
944 root
= entry
->parent
== NULL
? snd_proc_root
: entry
->parent
->p
;
945 snd_assert(root
, return -ENXIO
);
947 snd_remove_proc_entry(root
, entry
->p
);
949 snd_info_free_entry(entry
);
957 static snd_info_entry_t
*snd_info_version_entry
= NULL
;
959 static void snd_info_version_read(snd_info_entry_t
*entry
, snd_info_buffer_t
* buffer
)
962 "Advanced Linux Sound Architecture Driver Version "
963 CONFIG_SND_VERSION CONFIG_SND_DATE
".\n"
967 static int __init
snd_info_version_init(void)
969 snd_info_entry_t
*entry
;
971 entry
= snd_info_create_module_entry(THIS_MODULE
, "version", NULL
);
974 entry
->c
.text
.read_size
= 256;
975 entry
->c
.text
.read
= snd_info_version_read
;
976 if (snd_info_register(entry
) < 0) {
977 snd_info_free_entry(entry
);
980 snd_info_version_entry
= entry
;
984 static int __exit
snd_info_version_done(void)
986 if (snd_info_version_entry
)
987 snd_info_unregister(snd_info_version_entry
);
991 #endif /* CONFIG_PROC_FS */