mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
Merge remote-tracking branches 'asoc/fix/jack', 'asoc/fix/max98088', 'asoc/fix/max98095', 'asoc/fix/omap', 'asoc/fix/pxa' and 'asoc/fix/qcom-be' into asoc-linus
This commit is contained in:
commit
3b22371e20
@ -231,13 +231,13 @@ TRACE_EVENT(snd_soc_jack_report,
|
||||
TP_ARGS(jack, mask, val),
|
||||
|
||||
TP_STRUCT__entry(
|
||||
__string( name, jack->jack->name )
|
||||
__string( name, jack->jack->id )
|
||||
__field( int, mask )
|
||||
__field( int, val )
|
||||
),
|
||||
|
||||
TP_fast_assign(
|
||||
__assign_str(name, jack->jack->name);
|
||||
__assign_str(name, jack->jack->id);
|
||||
__entry->mask = mask;
|
||||
__entry->val = val;
|
||||
),
|
||||
@ -253,12 +253,12 @@ TRACE_EVENT(snd_soc_jack_notify,
|
||||
TP_ARGS(jack, val),
|
||||
|
||||
TP_STRUCT__entry(
|
||||
__string( name, jack->jack->name )
|
||||
__string( name, jack->jack->id )
|
||||
__field( int, val )
|
||||
),
|
||||
|
||||
TP_fast_assign(
|
||||
__assign_str(name, jack->jack->name);
|
||||
__assign_str(name, jack->jack->id);
|
||||
__entry->val = val;
|
||||
),
|
||||
|
||||
|
@ -1496,7 +1496,7 @@ static int max98088_put_eq_enum(struct snd_kcontrol *kcontrol,
|
||||
struct max98088_pdata *pdata = max98088->pdata;
|
||||
int channel = max98088_get_channel(codec, kcontrol->id.name);
|
||||
struct max98088_cdata *cdata;
|
||||
int sel = ucontrol->value.integer.value[0];
|
||||
int sel = ucontrol->value.enumerated.item[0];
|
||||
|
||||
if (channel < 0)
|
||||
return channel;
|
||||
|
@ -1499,7 +1499,7 @@ static int max98095_put_eq_enum(struct snd_kcontrol *kcontrol,
|
||||
struct max98095_pdata *pdata = max98095->pdata;
|
||||
int channel = max98095_get_eq_channel(kcontrol->id.name);
|
||||
struct max98095_cdata *cdata;
|
||||
unsigned int sel = ucontrol->value.integer.value[0];
|
||||
unsigned int sel = ucontrol->value.enumerated.item[0];
|
||||
struct max98095_eq_cfg *coef_set;
|
||||
int fs, best, best_val, i;
|
||||
int regmask, regsave;
|
||||
@ -1653,7 +1653,7 @@ static int max98095_put_bq_enum(struct snd_kcontrol *kcontrol,
|
||||
struct max98095_pdata *pdata = max98095->pdata;
|
||||
int channel = max98095_get_bq_channel(codec, kcontrol->id.name);
|
||||
struct max98095_cdata *cdata;
|
||||
unsigned int sel = ucontrol->value.integer.value[0];
|
||||
unsigned int sel = ucontrol->value.enumerated.item[0];
|
||||
struct max98095_biquad_cfg *coef_set;
|
||||
int fs, best, best_val, i;
|
||||
int regmask, regsave;
|
||||
|
@ -133,7 +133,7 @@ static struct snd_soc_ops n810_ops = {
|
||||
static int n810_get_spk(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = n810_spk_func;
|
||||
ucontrol->value.enumerated.item[0] = n810_spk_func;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -143,10 +143,10 @@ static int n810_set_spk(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (n810_spk_func == ucontrol->value.integer.value[0])
|
||||
if (n810_spk_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
n810_spk_func = ucontrol->value.integer.value[0];
|
||||
n810_spk_func = ucontrol->value.enumerated.item[0];
|
||||
n810_ext_control(&card->dapm);
|
||||
|
||||
return 1;
|
||||
@ -155,7 +155,7 @@ static int n810_set_spk(struct snd_kcontrol *kcontrol,
|
||||
static int n810_get_jack(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = n810_jack_func;
|
||||
ucontrol->value.enumerated.item[0] = n810_jack_func;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -165,10 +165,10 @@ static int n810_set_jack(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (n810_jack_func == ucontrol->value.integer.value[0])
|
||||
if (n810_jack_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
n810_jack_func = ucontrol->value.integer.value[0];
|
||||
n810_jack_func = ucontrol->value.enumerated.item[0];
|
||||
n810_ext_control(&card->dapm);
|
||||
|
||||
return 1;
|
||||
@ -177,7 +177,7 @@ static int n810_set_jack(struct snd_kcontrol *kcontrol,
|
||||
static int n810_get_input(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = n810_dmic_func;
|
||||
ucontrol->value.enumerated.item[0] = n810_dmic_func;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -187,10 +187,10 @@ static int n810_set_input(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (n810_dmic_func == ucontrol->value.integer.value[0])
|
||||
if (n810_dmic_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
n810_dmic_func = ucontrol->value.integer.value[0];
|
||||
n810_dmic_func = ucontrol->value.enumerated.item[0];
|
||||
n810_ext_control(&card->dapm);
|
||||
|
||||
return 1;
|
||||
|
@ -132,7 +132,7 @@ static struct snd_soc_ops rx51_ops = {
|
||||
static int rx51_get_spk(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = rx51_spk_func;
|
||||
ucontrol->value.enumerated.item[0] = rx51_spk_func;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -142,10 +142,10 @@ static int rx51_set_spk(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (rx51_spk_func == ucontrol->value.integer.value[0])
|
||||
if (rx51_spk_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
rx51_spk_func = ucontrol->value.integer.value[0];
|
||||
rx51_spk_func = ucontrol->value.enumerated.item[0];
|
||||
rx51_ext_control(&card->dapm);
|
||||
|
||||
return 1;
|
||||
@ -180,7 +180,7 @@ static int rx51_hp_event(struct snd_soc_dapm_widget *w,
|
||||
static int rx51_get_input(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = rx51_dmic_func;
|
||||
ucontrol->value.enumerated.item[0] = rx51_dmic_func;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -190,10 +190,10 @@ static int rx51_set_input(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (rx51_dmic_func == ucontrol->value.integer.value[0])
|
||||
if (rx51_dmic_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
rx51_dmic_func = ucontrol->value.integer.value[0];
|
||||
rx51_dmic_func = ucontrol->value.enumerated.item[0];
|
||||
rx51_ext_control(&card->dapm);
|
||||
|
||||
return 1;
|
||||
@ -202,7 +202,7 @@ static int rx51_set_input(struct snd_kcontrol *kcontrol,
|
||||
static int rx51_get_jack(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = rx51_jack_func;
|
||||
ucontrol->value.enumerated.item[0] = rx51_jack_func;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@ -212,10 +212,10 @@ static int rx51_set_jack(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (rx51_jack_func == ucontrol->value.integer.value[0])
|
||||
if (rx51_jack_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
rx51_jack_func = ucontrol->value.integer.value[0];
|
||||
rx51_jack_func = ucontrol->value.enumerated.item[0];
|
||||
rx51_ext_control(&card->dapm);
|
||||
|
||||
return 1;
|
||||
|
@ -163,7 +163,7 @@ static struct snd_soc_ops corgi_ops = {
|
||||
static int corgi_get_jack(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = corgi_jack_func;
|
||||
ucontrol->value.enumerated.item[0] = corgi_jack_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -172,10 +172,10 @@ static int corgi_set_jack(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (corgi_jack_func == ucontrol->value.integer.value[0])
|
||||
if (corgi_jack_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
corgi_jack_func = ucontrol->value.integer.value[0];
|
||||
corgi_jack_func = ucontrol->value.enumerated.item[0];
|
||||
corgi_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
@ -183,7 +183,7 @@ static int corgi_set_jack(struct snd_kcontrol *kcontrol,
|
||||
static int corgi_get_spk(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = corgi_spk_func;
|
||||
ucontrol->value.enumerated.item[0] = corgi_spk_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -192,10 +192,10 @@ static int corgi_set_spk(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (corgi_spk_func == ucontrol->value.integer.value[0])
|
||||
if (corgi_spk_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
corgi_spk_func = ucontrol->value.integer.value[0];
|
||||
corgi_spk_func = ucontrol->value.enumerated.item[0];
|
||||
corgi_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
|
@ -308,17 +308,17 @@ static int magician_set_spk(struct snd_kcontrol *kcontrol,
|
||||
static int magician_get_input(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = magician_in_sel;
|
||||
ucontrol->value.enumerated.item[0] = magician_in_sel;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int magician_set_input(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
if (magician_in_sel == ucontrol->value.integer.value[0])
|
||||
if (magician_in_sel == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
magician_in_sel = ucontrol->value.integer.value[0];
|
||||
magician_in_sel = ucontrol->value.enumerated.item[0];
|
||||
|
||||
switch (magician_in_sel) {
|
||||
case MAGICIAN_MIC:
|
||||
|
@ -138,7 +138,7 @@ static struct snd_soc_ops poodle_ops = {
|
||||
static int poodle_get_jack(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = poodle_jack_func;
|
||||
ucontrol->value.enumerated.item[0] = poodle_jack_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -147,10 +147,10 @@ static int poodle_set_jack(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (poodle_jack_func == ucontrol->value.integer.value[0])
|
||||
if (poodle_jack_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
poodle_jack_func = ucontrol->value.integer.value[0];
|
||||
poodle_jack_func = ucontrol->value.enumerated.item[0];
|
||||
poodle_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
@ -158,7 +158,7 @@ static int poodle_set_jack(struct snd_kcontrol *kcontrol,
|
||||
static int poodle_get_spk(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = poodle_spk_func;
|
||||
ucontrol->value.enumerated.item[0] = poodle_spk_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -167,10 +167,10 @@ static int poodle_set_spk(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (poodle_spk_func == ucontrol->value.integer.value[0])
|
||||
if (poodle_spk_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
poodle_spk_func = ucontrol->value.integer.value[0];
|
||||
poodle_spk_func = ucontrol->value.enumerated.item[0];
|
||||
poodle_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
|
@ -164,7 +164,7 @@ static struct snd_soc_ops spitz_ops = {
|
||||
static int spitz_get_jack(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = spitz_jack_func;
|
||||
ucontrol->value.enumerated.item[0] = spitz_jack_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -173,10 +173,10 @@ static int spitz_set_jack(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (spitz_jack_func == ucontrol->value.integer.value[0])
|
||||
if (spitz_jack_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
spitz_jack_func = ucontrol->value.integer.value[0];
|
||||
spitz_jack_func = ucontrol->value.enumerated.item[0];
|
||||
spitz_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
@ -184,7 +184,7 @@ static int spitz_set_jack(struct snd_kcontrol *kcontrol,
|
||||
static int spitz_get_spk(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = spitz_spk_func;
|
||||
ucontrol->value.enumerated.item[0] = spitz_spk_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -193,10 +193,10 @@ static int spitz_set_spk(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (spitz_spk_func == ucontrol->value.integer.value[0])
|
||||
if (spitz_spk_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
spitz_spk_func = ucontrol->value.integer.value[0];
|
||||
spitz_spk_func = ucontrol->value.enumerated.item[0];
|
||||
spitz_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
|
@ -95,7 +95,7 @@ static struct snd_soc_ops tosa_ops = {
|
||||
static int tosa_get_jack(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = tosa_jack_func;
|
||||
ucontrol->value.enumerated.item[0] = tosa_jack_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -104,10 +104,10 @@ static int tosa_set_jack(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (tosa_jack_func == ucontrol->value.integer.value[0])
|
||||
if (tosa_jack_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
tosa_jack_func = ucontrol->value.integer.value[0];
|
||||
tosa_jack_func = ucontrol->value.enumerated.item[0];
|
||||
tosa_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
@ -115,7 +115,7 @@ static int tosa_set_jack(struct snd_kcontrol *kcontrol,
|
||||
static int tosa_get_spk(struct snd_kcontrol *kcontrol,
|
||||
struct snd_ctl_elem_value *ucontrol)
|
||||
{
|
||||
ucontrol->value.integer.value[0] = tosa_spk_func;
|
||||
ucontrol->value.enumerated.item[0] = tosa_spk_func;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -124,10 +124,10 @@ static int tosa_set_spk(struct snd_kcontrol *kcontrol,
|
||||
{
|
||||
struct snd_soc_card *card = snd_kcontrol_chip(kcontrol);
|
||||
|
||||
if (tosa_spk_func == ucontrol->value.integer.value[0])
|
||||
if (tosa_spk_func == ucontrol->value.enumerated.item[0])
|
||||
return 0;
|
||||
|
||||
tosa_spk_func = ucontrol->value.integer.value[0];
|
||||
tosa_spk_func = ucontrol->value.enumerated.item[0];
|
||||
tosa_ext_control(&card->dapm);
|
||||
return 1;
|
||||
}
|
||||
|
@ -355,7 +355,6 @@ static struct regmap_config lpass_cpu_regmap_config = {
|
||||
.readable_reg = lpass_cpu_regmap_readable,
|
||||
.volatile_reg = lpass_cpu_regmap_volatile,
|
||||
.cache_type = REGCACHE_FLAT,
|
||||
.val_format_endian = REGMAP_ENDIAN_LITTLE,
|
||||
};
|
||||
|
||||
int asoc_qcom_lpass_cpu_platform_probe(struct platform_device *pdev)
|
||||
|
Loading…
Reference in New Issue
Block a user