|
@@ -158,6 +158,7 @@ static int snd_hwdep_release(struct inode *inode, struct file * file)
|
|
{
|
|
{
|
|
int err = -ENXIO;
|
|
int err = -ENXIO;
|
|
struct snd_hwdep *hw = file->private_data;
|
|
struct snd_hwdep *hw = file->private_data;
|
|
|
|
+ struct module *mod = hw->card->module;
|
|
mutex_lock(&hw->open_mutex);
|
|
mutex_lock(&hw->open_mutex);
|
|
if (hw->ops.release) {
|
|
if (hw->ops.release) {
|
|
err = hw->ops.release(hw, file);
|
|
err = hw->ops.release(hw, file);
|
|
@@ -167,7 +168,7 @@ static int snd_hwdep_release(struct inode *inode, struct file * file)
|
|
hw->used--;
|
|
hw->used--;
|
|
snd_card_file_remove(hw->card, file);
|
|
snd_card_file_remove(hw->card, file);
|
|
mutex_unlock(&hw->open_mutex);
|
|
mutex_unlock(&hw->open_mutex);
|
|
- module_put(hw->card->module);
|
|
|
|
|
|
+ module_put(mod);
|
|
return err;
|
|
return err;
|
|
}
|
|
}
|
|
|
|
|