mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
ALSA: snd-usb-caiaq: Send the correct command when setting controls
Fixes a bug where an incorrect command was sent which had no effect on the device. Signed-off-by: Mark Hills <mark@pogo.org.uk> Acked-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
2165592b83
commit
705350f8bd
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ static int control_put(struct snd_kcontrol *kcontrol,
|
|||
if (pos & CNT_INTVAL) {
|
||||
dev->control_state[pos & ~CNT_INTVAL]
|
||||
= ucontrol->value.integer.value[0];
|
||||
snd_usb_caiaq_send_command(dev, EP1_CMD_DIMM_LEDS,
|
||||
snd_usb_caiaq_send_command(dev, EP1_CMD_WRITE_IO,
|
||||
dev->control_state, sizeof(dev->control_state));
|
||||
} else {
|
||||
if (ucontrol->value.integer.value[0])
|
||||
|
|
Loading…
Reference in a new issue