]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ALSA: vmaster: Fix the regression of missing vmaster hook call
authorTakashi Iwai <tiwai@suse.de>
Wed, 3 Jul 2013 12:01:32 +0000 (14:01 +0200)
committerTakashi Iwai <tiwai@suse.de>
Wed, 3 Jul 2013 12:01:32 +0000 (14:01 +0200)
The commit [1ca2f2ec: ALSA: vmaster: Add snd_ctl_sync_vmaster() helper
function] changed master_put() function and the check for the required
vmaster hook call is wrongly performed now, which results in the
missing hook call upon "Master Playback Switch" value changes.
This patch corrects the check logic.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/core/vmaster.c

index 5df8dc25ad80de98a5a28c61e813f44799727221..842a97d5fc3a1ec104fcd691597e07095c3fa76d 100644 (file)
@@ -348,7 +348,7 @@ static int master_put(struct snd_kcontrol *kcontrol,
        err = sync_slaves(master, old_val, new_val);
        if (err < 0)
                return err;
-       if (master->hook && first_init)
+       if (master->hook && !first_init)
                master->hook(master->hook_private_data, master->val);
        return 1;
 }