ASoC: intel: Fix snd_pcm_format_t handling
As sparse warns, the PCM format type can't be dealt as integer as found in Intel SST driver codes. Fix them in the following two ways: - The open code with snd_mask_set() and params->masks reference is replaced with params_set_format() - The rest codes with snd_mask_set(fmt, SNDRV_PCM_FORMAT_XXX) are replaced with the new helper, snd_mask_set_format(). Reported-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
533a927485
commit
b5453e8ca3
9 changed files with 11 additions and 13 deletions
|
@ -154,9 +154,7 @@ static int broadwell_ssp0_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
channels->min = channels->max = 2;
|
channels->min = channels->max = 2;
|
||||||
|
|
||||||
/* set SSP0 to 16 bit */
|
/* set SSP0 to 16 bit */
|
||||||
snd_mask_set(¶ms->masks[SNDRV_PCM_HW_PARAM_FORMAT -
|
params_set_format(params, SNDRV_PCM_FORMAT_S16_LE);
|
||||||
SNDRV_PCM_HW_PARAM_FIRST_MASK],
|
|
||||||
SNDRV_PCM_FORMAT_S16_LE);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -160,7 +160,7 @@ static int broxton_ssp_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
|
|
||||||
/* set SSP to 24 bit */
|
/* set SSP to 24 bit */
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -221,7 +221,7 @@ static int broxton_ssp5_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
|
|
||||||
/* set SSP5 to 24 bit */
|
/* set SSP5 to 24 bit */
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,7 +152,7 @@ static int kabylake_ssp_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
|
|
||||||
/* set SSP to 24 bit */
|
/* set SSP to 24 bit */
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -434,14 +434,14 @@ static int kabylake_ssp_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
rate->min = rate->max = 48000;
|
rate->min = rate->max = 48000;
|
||||||
channels->min = channels->max = 2;
|
channels->min = channels->max = 2;
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
* The speaker on the SSP0 supports S16_LE and not S24_LE.
|
* The speaker on the SSP0 supports S16_LE and not S24_LE.
|
||||||
* thus changing the mask here
|
* thus changing the mask here
|
||||||
*/
|
*/
|
||||||
if (!strcmp(be_dai_link->name, "SSP0-Codec"))
|
if (!strcmp(be_dai_link->name, "SSP0-Codec"))
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S16_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S16_LE);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,7 +307,7 @@ static int kabylake_ssp_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
rate->min = rate->max = 48000;
|
rate->min = rate->max = 48000;
|
||||||
channels->min = channels->max = 2;
|
channels->min = channels->max = 2;
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
} else if (!strcmp(fe_dai_link->name, "Kbl Audio DMIC cap")) {
|
} else if (!strcmp(fe_dai_link->name, "Kbl Audio DMIC cap")) {
|
||||||
if (params_channels(params) == 2 ||
|
if (params_channels(params) == 2 ||
|
||||||
DMIC_CH(dmic_constraints) == 2)
|
DMIC_CH(dmic_constraints) == 2)
|
||||||
|
@ -320,7 +320,7 @@ static int kabylake_ssp_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
* thus changing the mask here
|
* thus changing the mask here
|
||||||
*/
|
*/
|
||||||
if (!strcmp(be_dai_link->name, "SSP0-Codec"))
|
if (!strcmp(be_dai_link->name, "SSP0-Codec"))
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S16_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S16_LE);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -157,7 +157,7 @@ static int skylake_ssp_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
|
|
||||||
/* set SSP0 to 24 bit */
|
/* set SSP0 to 24 bit */
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -346,7 +346,7 @@ static int skylake_ssp_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
|
|
||||||
/* set SSP0 to 24 bit */
|
/* set SSP0 to 24 bit */
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -229,7 +229,7 @@ static int skylake_ssp0_fixup(struct snd_soc_pcm_runtime *rtd,
|
||||||
|
|
||||||
/* set SSP0 to 24 bit */
|
/* set SSP0 to 24 bit */
|
||||||
snd_mask_none(fmt);
|
snd_mask_none(fmt);
|
||||||
snd_mask_set(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
snd_mask_set_format(fmt, SNDRV_PCM_FORMAT_S24_LE);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue