mutex_unlock(&codec->control_mutex);
snd_hda_codec_flush_amp_cache(codec); /* flush the updates */
if (err >= 0 && spec->cap_sync_hook)
- spec->cap_sync_hook(codec);
+ spec->cap_sync_hook(codec, ucontrol);
return err;
}
static int cap_sw_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
- struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
- struct hda_gen_spec *spec = codec->spec;
- int ret;
-
- ret = cap_put_caller(kcontrol, ucontrol,
+ return cap_put_caller(kcontrol, ucontrol,
snd_hda_mixer_amp_switch_put,
NID_PATH_MUTE_CTL);
- if (ret < 0)
- return ret;
-
- if (spec->capture_switch_hook) {
- bool enable = (ucontrol->value.integer.value[0] ||
- ucontrol->value.integer.value[1]);
- spec->capture_switch_hook(codec, enable);
- }
-
- return ret;
}
static const struct snd_kcontrol_new cap_sw_temp = {
return false;
}
+/* capture switch put callback for a single control with hook call */
static int cap_single_sw_put(struct snd_kcontrol *kcontrol,
struct snd_ctl_elem_value *ucontrol)
{
if (ret < 0)
return ret;
- if (spec->capture_switch_hook) {
- bool enable = (ucontrol->value.integer.value[0] ||
- ucontrol->value.integer.value[1]);
- spec->capture_switch_hook(codec, enable);
- }
+ if (spec->cap_sync_hook)
+ spec->cap_sync_hook(codec, ucontrol);
return ret;
}
amp_val_replace_channels(ctl, chs));
if (!knew)
return -ENOMEM;
- if (is_switch && spec->capture_switch_hook)
+ if (is_switch)
knew->put = cap_single_sw_put;
if (!inv_dmic)
return 0;
amp_val_replace_channels(ctl, 2));
if (!knew)
return -ENOMEM;
- if (is_switch && spec->capture_switch_hook)
+ if (is_switch)
knew->put = cap_single_sw_put;
return 0;
}
return 0;
snd_hda_activate_path(codec, path, true, false);
if (spec->cap_sync_hook)
- spec->cap_sync_hook(codec);
+ spec->cap_sync_hook(codec, NULL);
return 1;
}
update_shared_mic_hp(codec, spec->cur_mux[0]);
if (spec->cap_sync_hook)
- spec->cap_sync_hook(codec);
+ spec->cap_sync_hook(codec, NULL);
}
/* set right pin controls for digital I/O */
/* hooks */
void (*init_hook)(struct hda_codec *codec);
void (*automute_hook)(struct hda_codec *codec);
- void (*cap_sync_hook)(struct hda_codec *codec);
+ void (*cap_sync_hook)(struct hda_codec *codec,
+ struct snd_ctl_elem_value *ucontrol);
/* PCM hooks */
void (*pcm_playback_hook)(struct hda_pcm_stream *hinfo,
struct hda_jack_tbl *tbl);
void (*mic_autoswitch_hook)(struct hda_codec *codec,
struct hda_jack_tbl *tbl);
-
- /* capture switch hook (for mic-mute LED) */
- void (*capture_switch_hook)(struct hda_codec *codec, bool enable);
};
int snd_hda_gen_spec_init(struct hda_gen_spec *spec);
}
/* hook for controlling mic-mute LED GPIO */
-static void stac_capture_led_hook(struct hda_codec *codec, bool enable)
+static void stac_capture_led_hook(struct hda_codec *codec,
+ struct snd_ctl_elem_value *ucontrol)
{
struct sigmatel_spec *spec = codec->spec;
- bool mute = !enable;
+ bool mute;
+ if (!ucontrol)
+ return;
+
+ mute = !(ucontrol->value.integer.value[0] ||
+ ucontrol->value.integer.value[1]);
if (spec->mic_mute_led_on != mute) {
spec->mic_mute_led_on = mute;
if (mute)
spec->mic_mute_led_on = true;
spec->gpio_data |= spec->mic_mute_led_gpio;
- spec->gen.capture_switch_hook = stac_capture_led_hook;
+ spec->gen.cap_sync_hook = stac_capture_led_hook;
}
}