Commit 25a9a4f9 authored by Takashi Iwai's avatar Takashi Iwai

ALSA: usb-audio: Add Digidesign Mbox 1 resume support

Again another quirk fix, just convert to usb_mixer_elem_list with the
resume callback for Mbox 1 stuff.
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 2bfb14c3
...@@ -616,29 +616,12 @@ static int snd_mbox1_switch_get(struct snd_kcontrol *kctl, ...@@ -616,29 +616,12 @@ static int snd_mbox1_switch_get(struct snd_kcontrol *kctl,
return 0; return 0;
} }
static int snd_mbox1_switch_put(struct snd_kcontrol *kctl, static int snd_mbox1_switch_update(struct usb_mixer_interface *mixer, int val)
struct snd_ctl_elem_value *ucontrol)
{ {
struct snd_usb_audio *chip; struct snd_usb_audio *chip = mixer->chip;
struct usb_mixer_interface *mixer;
int err; int err;
bool cur_val, new_val;
unsigned char buff[3]; unsigned char buff[3];
cur_val = kctl->private_value;
new_val = ucontrol->value.enumerated.item[0];
mixer = snd_kcontrol_chip(kctl);
if (snd_BUG_ON(!mixer))
return -EINVAL;
chip = mixer->chip;
if (snd_BUG_ON(!chip))
return -EINVAL;
if (cur_val == new_val)
return 0;
down_read(&chip->shutdown_rwsem); down_read(&chip->shutdown_rwsem);
if (chip->shutdown) { if (chip->shutdown) {
err = -ENODEV; err = -ENODEV;
...@@ -668,7 +651,7 @@ static int snd_mbox1_switch_put(struct snd_kcontrol *kctl, ...@@ -668,7 +651,7 @@ static int snd_mbox1_switch_put(struct snd_kcontrol *kctl,
* while S/PDIF sync is enabled and confusing * while S/PDIF sync is enabled and confusing
* this configuration. * this configuration.
*/ */
if (new_val == 0) { if (val == 0) {
buff[0] = 0x80; buff[0] = 0x80;
buff[1] = 0xbb; buff[1] = 0xbb;
buff[2] = 0x00; buff[2] = 0x00;
...@@ -697,10 +680,27 @@ static int snd_mbox1_switch_put(struct snd_kcontrol *kctl, ...@@ -697,10 +680,27 @@ static int snd_mbox1_switch_put(struct snd_kcontrol *kctl,
USB_RECIP_ENDPOINT, 0x100, 0x2, buff, 3); USB_RECIP_ENDPOINT, 0x100, 0x2, buff, 3);
if (err < 0) if (err < 0)
goto err; goto err;
kctl->private_value = new_val;
err: err:
up_read(&chip->shutdown_rwsem); up_read(&chip->shutdown_rwsem);
return err;
}
static int snd_mbox1_switch_put(struct snd_kcontrol *kctl,
struct snd_ctl_elem_value *ucontrol)
{
struct usb_mixer_elem_list *list = snd_kcontrol_chip(kctl);
struct usb_mixer_interface *mixer = list->mixer;
int err;
bool cur_val, new_val;
cur_val = kctl->private_value;
new_val = ucontrol->value.enumerated.item[0];
if (cur_val == new_val)
return 0;
kctl->private_value = new_val;
err = snd_mbox1_switch_update(mixer, new_val);
return err < 0 ? err : 1; return err < 0 ? err : 1;
} }
...@@ -715,6 +715,11 @@ static int snd_mbox1_switch_info(struct snd_kcontrol *kcontrol, ...@@ -715,6 +715,11 @@ static int snd_mbox1_switch_info(struct snd_kcontrol *kcontrol,
return snd_ctl_enum_info(uinfo, 1, ARRAY_SIZE(texts), texts); return snd_ctl_enum_info(uinfo, 1, ARRAY_SIZE(texts), texts);
} }
static int snd_mbox1_switch_resume(struct usb_mixer_elem_list *list)
{
return snd_mbox1_switch_update(list->mixer, list->kctl->private_value);
}
static struct snd_kcontrol_new snd_mbox1_switch = { static struct snd_kcontrol_new snd_mbox1_switch = {
.iface = SNDRV_CTL_ELEM_IFACE_MIXER, .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
.name = "Clock Source", .name = "Clock Source",
...@@ -728,8 +733,9 @@ static struct snd_kcontrol_new snd_mbox1_switch = { ...@@ -728,8 +733,9 @@ static struct snd_kcontrol_new snd_mbox1_switch = {
static int snd_mbox1_create_sync_switch(struct usb_mixer_interface *mixer) static int snd_mbox1_create_sync_switch(struct usb_mixer_interface *mixer)
{ {
return snd_ctl_add(mixer->chip->card, return add_single_ctl_with_resume(mixer, 0,
snd_ctl_new1(&snd_mbox1_switch, mixer)); snd_mbox1_switch_resume,
&snd_mbox1_switch, NULL);
} }
/* Native Instruments device quirks */ /* Native Instruments device quirks */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment