|
@@ -2643,7 +2643,10 @@ int wm_adsp2_preloader_get(struct snd_kcontrol *kcontrol,
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
|
{
|
|
|
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
|
|
- struct wm_adsp *dsp = snd_soc_component_get_drvdata(component);
|
|
|
+ struct wm_adsp *dsps = snd_soc_component_get_drvdata(component);
|
|
|
+ struct soc_mixer_control *mc =
|
|
|
+ (struct soc_mixer_control *)kcontrol->private_value;
|
|
|
+ struct wm_adsp *dsp = &dsps[mc->shift - 1];
|
|
|
|
|
|
ucontrol->value.integer.value[0] = dsp->preloaded;
|
|
|
|
|
@@ -2655,10 +2658,11 @@ int wm_adsp2_preloader_put(struct snd_kcontrol *kcontrol,
|
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
|
{
|
|
|
struct snd_soc_component *component = snd_soc_kcontrol_component(kcontrol);
|
|
|
- struct wm_adsp *dsp = snd_soc_component_get_drvdata(component);
|
|
|
+ struct wm_adsp *dsps = snd_soc_component_get_drvdata(component);
|
|
|
struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
|
|
|
struct soc_mixer_control *mc =
|
|
|
(struct soc_mixer_control *)kcontrol->private_value;
|
|
|
+ struct wm_adsp *dsp = &dsps[mc->shift - 1];
|
|
|
char preload[32];
|
|
|
|
|
|
snprintf(preload, ARRAY_SIZE(preload), "DSP%u Preload", mc->shift);
|