diff options
Diffstat (limited to 'sound/core/control.c')
-rw-r--r-- | sound/core/control.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/core/control.c b/sound/core/control.c index 574745314e70..22565c9b9603 100644 --- a/sound/core/control.c +++ b/sound/core/control.c | |||
@@ -664,7 +664,7 @@ static int snd_ctl_elem_info_user(struct snd_ctl_file *ctl, | |||
664 | if (copy_from_user(&info, _info, sizeof(info))) | 664 | if (copy_from_user(&info, _info, sizeof(info))) |
665 | return -EFAULT; | 665 | return -EFAULT; |
666 | snd_power_lock(ctl->card); | 666 | snd_power_lock(ctl->card); |
667 | result = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0, NULL); | 667 | result = snd_power_wait(ctl->card, SNDRV_CTL_POWER_D0); |
668 | if (result >= 0) | 668 | if (result >= 0) |
669 | result = snd_ctl_elem_info(ctl, &info); | 669 | result = snd_ctl_elem_info(ctl, &info); |
670 | snd_power_unlock(ctl->card); | 670 | snd_power_unlock(ctl->card); |
@@ -718,7 +718,7 @@ static int snd_ctl_elem_read_user(struct snd_card *card, | |||
718 | return -EFAULT; | 718 | return -EFAULT; |
719 | } | 719 | } |
720 | snd_power_lock(card); | 720 | snd_power_lock(card); |
721 | result = snd_power_wait(card, SNDRV_CTL_POWER_D0, NULL); | 721 | result = snd_power_wait(card, SNDRV_CTL_POWER_D0); |
722 | if (result >= 0) | 722 | if (result >= 0) |
723 | result = snd_ctl_elem_read(card, control); | 723 | result = snd_ctl_elem_read(card, control); |
724 | snd_power_unlock(card); | 724 | snd_power_unlock(card); |
@@ -783,7 +783,7 @@ static int snd_ctl_elem_write_user(struct snd_ctl_file *file, | |||
783 | } | 783 | } |
784 | card = file->card; | 784 | card = file->card; |
785 | snd_power_lock(card); | 785 | snd_power_lock(card); |
786 | result = snd_power_wait(card, SNDRV_CTL_POWER_D0, NULL); | 786 | result = snd_power_wait(card, SNDRV_CTL_POWER_D0); |
787 | if (result >= 0) | 787 | if (result >= 0) |
788 | result = snd_ctl_elem_write(card, file, control); | 788 | result = snd_ctl_elem_write(card, file, control); |
789 | snd_power_unlock(card); | 789 | snd_power_unlock(card); |