2 * Initialization routines
3 * Copyright (c) by Jaroslav Kysela <perex@perex.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 <linux/init.h>
23 #include <linux/sched.h>
24 #include <linux/module.h>
25 #include <linux/device.h>
26 #include <linux/file.h>
27 #include <linux/slab.h>
28 #include <linux/time.h>
29 #include <linux/ctype.h>
32 #include <sound/core.h>
33 #include <sound/control.h>
34 #include <sound/info.h>
36 /* monitor files for graceful shutdown (hotplug) */
37 struct snd_monitor_file {
39 const struct file_operations *disconnected_f_op;
40 struct list_head shutdown_list; /* still need to shutdown */
41 struct list_head list; /* link of monitor files */
44 static DEFINE_SPINLOCK(shutdown_lock);
45 static LIST_HEAD(shutdown_files);
47 static const struct file_operations snd_shutdown_f_ops;
49 /* locked for registering/using */
50 static DECLARE_BITMAP(snd_cards_lock, SNDRV_CARDS);
51 struct snd_card *snd_cards[SNDRV_CARDS];
52 EXPORT_SYMBOL(snd_cards);
54 static DEFINE_MUTEX(snd_card_mutex);
56 static char *slots[SNDRV_CARDS];
57 module_param_array(slots, charp, NULL, 0444);
58 MODULE_PARM_DESC(slots, "Module names assigned to the slots.");
60 /* return non-zero if the given index is reserved for the given
61 * module via slots option
63 static int module_slot_match(struct module *module, int idx)
69 if (!module || !*module->name || !slots[idx])
75 match = 0; /* negative match */
78 /* compare module name strings
79 * hyphens are handled as equivalent with underscore
97 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
98 int (*snd_mixer_oss_notify_callback)(struct snd_card *card, int free_flag);
99 EXPORT_SYMBOL(snd_mixer_oss_notify_callback);
102 #ifdef CONFIG_PROC_FS
103 static void snd_card_id_read(struct snd_info_entry *entry,
104 struct snd_info_buffer *buffer)
106 snd_iprintf(buffer, "%s\n", entry->card->id);
109 static inline int init_info_for_card(struct snd_card *card)
112 struct snd_info_entry *entry;
114 if ((err = snd_info_card_register(card)) < 0) {
115 snd_printd("unable to create card info\n");
118 if ((entry = snd_info_create_card_entry(card, "id", card->proc_root)) == NULL) {
119 snd_printd("unable to create card entry\n");
122 entry->c.text.read = snd_card_id_read;
123 if (snd_info_register(entry) < 0) {
124 snd_info_free_entry(entry);
127 card->proc_id = entry;
130 #else /* !CONFIG_PROC_FS */
131 #define init_info_for_card(card)
135 * snd_card_create - create and initialize a soundcard structure
136 * @idx: card index (address) [0 ... (SNDRV_CARDS-1)]
137 * @xid: card identification (ASCII string)
138 * @module: top level module for locking
139 * @extra_size: allocate this extra size after the main soundcard structure
140 * @card_ret: the pointer to store the created card instance
142 * Creates and initializes a soundcard structure.
144 * The function allocates snd_card instance via kzalloc with the given
145 * space for the driver to use freely. The allocated struct is stored
146 * in the given card_ret pointer.
148 * Return: Zero if successful or a negative error code.
150 int snd_card_create(int idx, const char *xid,
151 struct module *module, int extra_size,
152 struct snd_card **card_ret)
154 struct snd_card *card;
157 if (snd_BUG_ON(!card_ret))
163 card = kzalloc(sizeof(*card) + extra_size, GFP_KERNEL);
167 strlcpy(card->id, xid, sizeof(card->id));
169 mutex_lock(&snd_card_mutex);
171 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++) {
172 /* idx == -1 == 0xffff means: take any free slot */
173 if (idx2 < sizeof(int) && !(idx & (1U << idx2)))
175 if (!test_bit(idx2, snd_cards_lock)) {
176 if (module_slot_match(module, idx2)) {
184 for (idx2 = 0; idx2 < SNDRV_CARDS; idx2++) {
185 /* idx == -1 == 0xffff means: take any free slot */
186 if (idx2 < sizeof(int) && !(idx & (1U << idx2)))
188 if (!test_bit(idx2, snd_cards_lock)) {
189 if (!slots[idx2] || !*slots[idx2]) {
198 else if (idx < snd_ecards_limit) {
199 if (test_bit(idx, snd_cards_lock))
200 err = -EBUSY; /* invalid */
201 } else if (idx >= SNDRV_CARDS)
204 mutex_unlock(&snd_card_mutex);
205 snd_printk(KERN_ERR "cannot find the slot for index %d (range 0-%i), error: %d\n",
206 idx, snd_ecards_limit - 1, err);
209 set_bit(idx, snd_cards_lock); /* lock it */
210 if (idx >= snd_ecards_limit)
211 snd_ecards_limit = idx + 1; /* increase the limit */
212 mutex_unlock(&snd_card_mutex);
214 card->module = module;
215 INIT_LIST_HEAD(&card->devices);
216 init_rwsem(&card->controls_rwsem);
217 rwlock_init(&card->ctl_files_rwlock);
218 INIT_LIST_HEAD(&card->controls);
219 INIT_LIST_HEAD(&card->ctl_files);
220 spin_lock_init(&card->files_lock);
221 INIT_LIST_HEAD(&card->files_list);
222 init_waitqueue_head(&card->shutdown_sleep);
223 atomic_set(&card->refcount, 0);
225 mutex_init(&card->power_lock);
226 init_waitqueue_head(&card->power_sleep);
228 /* the control interface cannot be accessed from the user space until */
229 /* snd_cards_bitmask and snd_cards are set with snd_card_register */
230 err = snd_ctl_create(card);
232 snd_printk(KERN_ERR "unable to register control minors\n");
235 err = snd_info_card_create(card);
237 snd_printk(KERN_ERR "unable to create card info\n");
241 card->private_data = (char *)card + sizeof(struct snd_card);
246 snd_device_free_all(card, SNDRV_DEV_CMD_PRE);
251 EXPORT_SYMBOL(snd_card_create);
253 /* return non-zero if a card is already locked */
254 int snd_card_locked(int card)
258 mutex_lock(&snd_card_mutex);
259 locked = test_bit(card, snd_cards_lock);
260 mutex_unlock(&snd_card_mutex);
264 static loff_t snd_disconnect_llseek(struct file *file, loff_t offset, int orig)
269 static ssize_t snd_disconnect_read(struct file *file, char __user *buf,
270 size_t count, loff_t *offset)
275 static ssize_t snd_disconnect_write(struct file *file, const char __user *buf,
276 size_t count, loff_t *offset)
281 static int snd_disconnect_release(struct inode *inode, struct file *file)
283 struct snd_monitor_file *df = NULL, *_df;
285 spin_lock(&shutdown_lock);
286 list_for_each_entry(_df, &shutdown_files, shutdown_list) {
287 if (_df->file == file) {
289 list_del_init(&df->shutdown_list);
293 spin_unlock(&shutdown_lock);
296 if ((file->f_flags & FASYNC) && df->disconnected_f_op->fasync)
297 df->disconnected_f_op->fasync(-1, file, 0);
298 return df->disconnected_f_op->release(inode, file);
301 panic("%s(%p, %p) failed!", __func__, inode, file);
304 static unsigned int snd_disconnect_poll(struct file * file, poll_table * wait)
306 return POLLERR | POLLNVAL;
309 static long snd_disconnect_ioctl(struct file *file,
310 unsigned int cmd, unsigned long arg)
315 static int snd_disconnect_mmap(struct file *file, struct vm_area_struct *vma)
320 static int snd_disconnect_fasync(int fd, struct file *file, int on)
325 static const struct file_operations snd_shutdown_f_ops =
327 .owner = THIS_MODULE,
328 .llseek = snd_disconnect_llseek,
329 .read = snd_disconnect_read,
330 .write = snd_disconnect_write,
331 .release = snd_disconnect_release,
332 .poll = snd_disconnect_poll,
333 .unlocked_ioctl = snd_disconnect_ioctl,
335 .compat_ioctl = snd_disconnect_ioctl,
337 .mmap = snd_disconnect_mmap,
338 .fasync = snd_disconnect_fasync
342 * snd_card_disconnect - disconnect all APIs from the file-operations (user space)
343 * @card: soundcard structure
345 * Disconnects all APIs from the file-operations (user space).
347 * Return: Zero, otherwise a negative error code.
349 * Note: The current implementation replaces all active file->f_op with special
350 * dummy file operations (they do nothing except release).
352 int snd_card_disconnect(struct snd_card *card)
354 struct snd_monitor_file *mfile;
360 spin_lock(&card->files_lock);
361 if (card->shutdown) {
362 spin_unlock(&card->files_lock);
366 spin_unlock(&card->files_lock);
368 /* phase 1: disable fops (user space) operations for ALSA API */
369 mutex_lock(&snd_card_mutex);
370 snd_cards[card->number] = NULL;
371 clear_bit(card->number, snd_cards_lock);
372 mutex_unlock(&snd_card_mutex);
374 /* phase 2: replace file->f_op with special dummy operations */
376 spin_lock(&card->files_lock);
377 list_for_each_entry(mfile, &card->files_list, list) {
378 /* it's critical part, use endless loop */
379 /* we have no room to fail */
380 mfile->disconnected_f_op = mfile->file->f_op;
382 spin_lock(&shutdown_lock);
383 list_add(&mfile->shutdown_list, &shutdown_files);
384 spin_unlock(&shutdown_lock);
386 mfile->file->f_op = &snd_shutdown_f_ops;
387 fops_get(mfile->file->f_op);
389 spin_unlock(&card->files_lock);
391 /* phase 3: notify all connected devices about disconnection */
392 /* at this point, they cannot respond to any calls except release() */
394 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
395 if (snd_mixer_oss_notify_callback)
396 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_DISCONNECT);
399 /* notify all devices that we are disconnected */
400 err = snd_device_disconnect_all(card);
402 snd_printk(KERN_ERR "not all devices for card %i can be disconnected\n", card->number);
404 snd_info_card_disconnect(card);
405 if (card->card_dev) {
406 device_unregister(card->card_dev);
407 card->card_dev = NULL;
410 wake_up(&card->power_sleep);
415 EXPORT_SYMBOL(snd_card_disconnect);
418 * snd_card_free - frees given soundcard structure
419 * @card: soundcard structure
421 * This function releases the soundcard structure and the all assigned
422 * devices automatically. That is, you don't have to release the devices
425 * Return: Zero. Frees all associated devices and frees the control
426 * interface associated to given soundcard.
428 static int snd_card_do_free(struct snd_card *card)
430 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
431 if (snd_mixer_oss_notify_callback)
432 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_FREE);
434 if (snd_device_free_all(card, SNDRV_DEV_CMD_PRE) < 0) {
435 snd_printk(KERN_ERR "unable to free all devices (pre)\n");
436 /* Fatal, but this situation should never occur */
438 if (snd_device_free_all(card, SNDRV_DEV_CMD_NORMAL) < 0) {
439 snd_printk(KERN_ERR "unable to free all devices (normal)\n");
440 /* Fatal, but this situation should never occur */
442 if (snd_device_free_all(card, SNDRV_DEV_CMD_POST) < 0) {
443 snd_printk(KERN_ERR "unable to free all devices (post)\n");
444 /* Fatal, but this situation should never occur */
446 if (card->private_free)
447 card->private_free(card);
448 snd_info_free_entry(card->proc_id);
449 if (snd_info_card_free(card) < 0) {
450 snd_printk(KERN_WARNING "unable to free card info\n");
451 /* Not fatal error */
458 * snd_card_unref - release the reference counter
459 * @card: the card instance
461 * Decrements the reference counter. When it reaches to zero, wake up
462 * the sleeper and call the destructor if needed.
464 void snd_card_unref(struct snd_card *card)
466 if (atomic_dec_and_test(&card->refcount)) {
467 wake_up(&card->shutdown_sleep);
468 if (card->free_on_last_close)
469 snd_card_do_free(card);
472 EXPORT_SYMBOL(snd_card_unref);
474 int snd_card_free_when_closed(struct snd_card *card)
478 atomic_inc(&card->refcount);
479 ret = snd_card_disconnect(card);
481 atomic_dec(&card->refcount);
485 card->free_on_last_close = 1;
486 if (atomic_dec_and_test(&card->refcount))
487 snd_card_do_free(card);
491 EXPORT_SYMBOL(snd_card_free_when_closed);
493 int snd_card_free(struct snd_card *card)
495 int ret = snd_card_disconnect(card);
499 /* wait, until all devices are ready for the free operation */
500 wait_event(card->shutdown_sleep, !atomic_read(&card->refcount));
501 snd_card_do_free(card);
505 EXPORT_SYMBOL(snd_card_free);
507 /* retrieve the last word of shortname or longname */
508 static const char *retrieve_id_from_card_name(const char *name)
510 const char *spos = name;
513 if (isspace(*name) && isalnum(name[1]))
520 /* return true if the given id string doesn't conflict any other card ids */
521 static bool card_id_ok(struct snd_card *card, const char *id)
524 if (!snd_info_check_reserved_words(id))
526 for (i = 0; i < snd_ecards_limit; i++) {
527 if (snd_cards[i] && snd_cards[i] != card &&
528 !strcmp(snd_cards[i]->id, id))
534 /* copy to card->id only with valid letters from nid */
535 static void copy_valid_id_string(struct snd_card *card, const char *src,
540 while (*nid && !isalnum(*nid))
543 *id++ = isalpha(*src) ? *src : 'D';
544 while (*nid && (size_t)(id - card->id) < sizeof(card->id) - 1) {
552 /* Set card->id from the given string
553 * If the string conflicts with other ids, add a suffix to make it unique.
555 static void snd_card_set_id_no_lock(struct snd_card *card, const char *src,
559 bool is_default = false;
562 copy_valid_id_string(card, src, nid);
566 /* use "Default" for obviously invalid strings
567 * ("card" conflicts with proc directories)
569 if (!*id || !strncmp(id, "card", 4)) {
570 strcpy(id, "Default");
575 for (loops = 0; loops < SNDRV_CARDS; loops++) {
577 char sfxstr[5]; /* "_012" */
580 if (card_id_ok(card, id))
583 /* Add _XYZ suffix */
584 sprintf(sfxstr, "_%X", loops + 1);
585 sfxlen = strlen(sfxstr);
586 if (len + sfxlen >= sizeof(card->id))
587 spos = id + sizeof(card->id) - sfxlen - 1;
590 strcpy(spos, sfxstr);
592 /* fallback to the default id */
598 snd_printk(KERN_ERR "unable to set card id (%s)\n", id);
599 if (card->proc_root->name)
600 strlcpy(card->id, card->proc_root->name, sizeof(card->id));
604 * snd_card_set_id - set card identification name
605 * @card: soundcard structure
606 * @nid: new identification string
608 * This function sets the card identification and checks for name
611 void snd_card_set_id(struct snd_card *card, const char *nid)
613 /* check if user specified own card->id */
614 if (card->id[0] != '\0')
616 mutex_lock(&snd_card_mutex);
617 snd_card_set_id_no_lock(card, nid, nid);
618 mutex_unlock(&snd_card_mutex);
620 EXPORT_SYMBOL(snd_card_set_id);
623 card_id_show_attr(struct device *dev,
624 struct device_attribute *attr, char *buf)
626 struct snd_card *card = dev_get_drvdata(dev);
627 return snprintf(buf, PAGE_SIZE, "%s\n", card ? card->id : "(null)");
631 card_id_store_attr(struct device *dev, struct device_attribute *attr,
632 const char *buf, size_t count)
634 struct snd_card *card = dev_get_drvdata(dev);
635 char buf1[sizeof(card->id)];
636 size_t copy = count > sizeof(card->id) - 1 ?
637 sizeof(card->id) - 1 : count;
641 for (idx = 0; idx < copy; idx++) {
643 if (!isalnum(c) && c != '_' && c != '-')
646 memcpy(buf1, buf, copy);
648 mutex_lock(&snd_card_mutex);
649 if (!card_id_ok(NULL, buf1)) {
650 mutex_unlock(&snd_card_mutex);
653 strcpy(card->id, buf1);
654 snd_info_card_id_change(card);
655 mutex_unlock(&snd_card_mutex);
660 static struct device_attribute card_id_attrs =
661 __ATTR(id, S_IRUGO | S_IWUSR, card_id_show_attr, card_id_store_attr);
664 card_number_show_attr(struct device *dev,
665 struct device_attribute *attr, char *buf)
667 struct snd_card *card = dev_get_drvdata(dev);
668 return snprintf(buf, PAGE_SIZE, "%i\n", card ? card->number : -1);
671 static struct device_attribute card_number_attrs =
672 __ATTR(number, S_IRUGO, card_number_show_attr, NULL);
675 * snd_card_register - register the soundcard
676 * @card: soundcard structure
678 * This function registers all the devices assigned to the soundcard.
679 * Until calling this, the ALSA control interface is blocked from the
680 * external accesses. Thus, you should call this function at the end
681 * of the initialization of the card.
683 * Return: Zero otherwise a negative error code if the registration failed.
685 int snd_card_register(struct snd_card *card)
689 if (snd_BUG_ON(!card))
692 if (!card->card_dev) {
693 card->card_dev = device_create(sound_class, card->dev,
695 "card%i", card->number);
696 if (IS_ERR(card->card_dev))
697 card->card_dev = NULL;
700 if ((err = snd_device_register_all(card)) < 0)
702 mutex_lock(&snd_card_mutex);
703 if (snd_cards[card->number]) {
704 /* already registered */
705 mutex_unlock(&snd_card_mutex);
709 /* make a unique id name from the given string */
710 char tmpid[sizeof(card->id)];
711 memcpy(tmpid, card->id, sizeof(card->id));
712 snd_card_set_id_no_lock(card, tmpid, tmpid);
714 /* create an id from either shortname or longname */
716 src = *card->shortname ? card->shortname : card->longname;
717 snd_card_set_id_no_lock(card, src,
718 retrieve_id_from_card_name(src));
720 snd_cards[card->number] = card;
721 mutex_unlock(&snd_card_mutex);
722 init_info_for_card(card);
723 #if defined(CONFIG_SND_MIXER_OSS) || defined(CONFIG_SND_MIXER_OSS_MODULE)
724 if (snd_mixer_oss_notify_callback)
725 snd_mixer_oss_notify_callback(card, SND_MIXER_OSS_NOTIFY_REGISTER);
727 if (card->card_dev) {
728 err = device_create_file(card->card_dev, &card_id_attrs);
731 err = device_create_file(card->card_dev, &card_number_attrs);
739 EXPORT_SYMBOL(snd_card_register);
741 #ifdef CONFIG_PROC_FS
742 static struct snd_info_entry *snd_card_info_entry;
744 static void snd_card_info_read(struct snd_info_entry *entry,
745 struct snd_info_buffer *buffer)
748 struct snd_card *card;
750 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
751 mutex_lock(&snd_card_mutex);
752 if ((card = snd_cards[idx]) != NULL) {
754 snd_iprintf(buffer, "%2i [%-15s]: %s - %s\n",
759 snd_iprintf(buffer, " %s\n",
762 mutex_unlock(&snd_card_mutex);
765 snd_iprintf(buffer, "--- no soundcards ---\n");
768 #ifdef CONFIG_SND_OSSEMUL
770 void snd_card_info_read_oss(struct snd_info_buffer *buffer)
773 struct snd_card *card;
775 for (idx = count = 0; idx < SNDRV_CARDS; idx++) {
776 mutex_lock(&snd_card_mutex);
777 if ((card = snd_cards[idx]) != NULL) {
779 snd_iprintf(buffer, "%s\n", card->longname);
781 mutex_unlock(&snd_card_mutex);
784 snd_iprintf(buffer, "--- no soundcards ---\n");
791 static struct snd_info_entry *snd_card_module_info_entry;
792 static void snd_card_module_info_read(struct snd_info_entry *entry,
793 struct snd_info_buffer *buffer)
796 struct snd_card *card;
798 for (idx = 0; idx < SNDRV_CARDS; idx++) {
799 mutex_lock(&snd_card_mutex);
800 if ((card = snd_cards[idx]) != NULL)
801 snd_iprintf(buffer, "%2i %s\n",
802 idx, card->module->name);
803 mutex_unlock(&snd_card_mutex);
808 int __init snd_card_info_init(void)
810 struct snd_info_entry *entry;
812 entry = snd_info_create_module_entry(THIS_MODULE, "cards", NULL);
815 entry->c.text.read = snd_card_info_read;
816 if (snd_info_register(entry) < 0) {
817 snd_info_free_entry(entry);
820 snd_card_info_entry = entry;
823 entry = snd_info_create_module_entry(THIS_MODULE, "modules", NULL);
825 entry->c.text.read = snd_card_module_info_read;
826 if (snd_info_register(entry) < 0)
827 snd_info_free_entry(entry);
829 snd_card_module_info_entry = entry;
836 int __exit snd_card_info_done(void)
838 snd_info_free_entry(snd_card_info_entry);
840 snd_info_free_entry(snd_card_module_info_entry);
845 #endif /* CONFIG_PROC_FS */
848 * snd_component_add - add a component string
849 * @card: soundcard structure
850 * @component: the component id string
852 * This function adds the component id string to the supported list.
853 * The component can be referred from the alsa-lib.
855 * Return: Zero otherwise a negative error code.
858 int snd_component_add(struct snd_card *card, const char *component)
861 int len = strlen(component);
863 ptr = strstr(card->components, component);
865 if (ptr[len] == '\0' || ptr[len] == ' ') /* already there */
868 if (strlen(card->components) + 1 + len + 1 > sizeof(card->components)) {
872 if (card->components[0] != '\0')
873 strcat(card->components, " ");
874 strcat(card->components, component);
878 EXPORT_SYMBOL(snd_component_add);
881 * snd_card_file_add - add the file to the file list of the card
882 * @card: soundcard structure
883 * @file: file pointer
885 * This function adds the file to the file linked-list of the card.
886 * This linked-list is used to keep tracking the connection state,
887 * and to avoid the release of busy resources by hotplug.
889 * Return: zero or a negative error code.
891 int snd_card_file_add(struct snd_card *card, struct file *file)
893 struct snd_monitor_file *mfile;
895 mfile = kmalloc(sizeof(*mfile), GFP_KERNEL);
899 mfile->disconnected_f_op = NULL;
900 INIT_LIST_HEAD(&mfile->shutdown_list);
901 spin_lock(&card->files_lock);
902 if (card->shutdown) {
903 spin_unlock(&card->files_lock);
907 list_add(&mfile->list, &card->files_list);
908 atomic_inc(&card->refcount);
909 spin_unlock(&card->files_lock);
913 EXPORT_SYMBOL(snd_card_file_add);
916 * snd_card_file_remove - remove the file from the file list
917 * @card: soundcard structure
918 * @file: file pointer
920 * This function removes the file formerly added to the card via
921 * snd_card_file_add() function.
922 * If all files are removed and snd_card_free_when_closed() was
923 * called beforehand, it processes the pending release of
926 * Return: Zero or a negative error code.
928 int snd_card_file_remove(struct snd_card *card, struct file *file)
930 struct snd_monitor_file *mfile, *found = NULL;
932 spin_lock(&card->files_lock);
933 list_for_each_entry(mfile, &card->files_list, list) {
934 if (mfile->file == file) {
935 list_del(&mfile->list);
936 spin_lock(&shutdown_lock);
937 list_del(&mfile->shutdown_list);
938 spin_unlock(&shutdown_lock);
939 if (mfile->disconnected_f_op)
940 fops_put(mfile->disconnected_f_op);
945 spin_unlock(&card->files_lock);
947 snd_printk(KERN_ERR "ALSA card file remove problem (%p)\n", file);
951 snd_card_unref(card);
955 EXPORT_SYMBOL(snd_card_file_remove);
959 * snd_power_wait - wait until the power-state is changed.
960 * @card: soundcard structure
961 * @power_state: expected power state
963 * Waits until the power-state is changed.
965 * Return: Zero if successful, or a negative error code.
967 * Note: the power lock must be active before call.
969 int snd_power_wait(struct snd_card *card, unsigned int power_state)
975 if (snd_power_get_state(card) == power_state)
977 init_waitqueue_entry(&wait, current);
978 add_wait_queue(&card->power_sleep, &wait);
980 if (card->shutdown) {
984 if (snd_power_get_state(card) == power_state)
986 set_current_state(TASK_UNINTERRUPTIBLE);
987 snd_power_unlock(card);
988 schedule_timeout(30 * HZ);
989 snd_power_lock(card);
991 remove_wait_queue(&card->power_sleep, &wait);
995 EXPORT_SYMBOL(snd_power_wait);
996 #endif /* CONFIG_PM */