mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
ASoC: fsl_easrc: Fix uninitialized scalar variable in fsl_easrc_set_ctx_format
The "ret" in fsl_easrc_set_ctx_format is not initialized, then
the unknown value maybe returned by this function.
Fixes: 955ac62405
("ASoC: fsl_easrc: Add EASRC ASoC CPU DAI drivers")
Signed-off-by: Shengjiu Wang <shengjiu.wang@nxp.com>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Link: https://lore.kernel.org/r/1592816611-16297-1-git-send-email-shengjiu.wang@nxp.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
39853b1438
commit
5748f4eb01
1 changed files with 1 additions and 1 deletions
|
@ -1129,7 +1129,7 @@ static int fsl_easrc_set_ctx_format(struct fsl_asrc_pair *ctx,
|
|||
struct fsl_easrc_ctx_priv *ctx_priv = ctx->private;
|
||||
struct fsl_easrc_data_fmt *in_fmt = &ctx_priv->in_params.fmt;
|
||||
struct fsl_easrc_data_fmt *out_fmt = &ctx_priv->out_params.fmt;
|
||||
int ret;
|
||||
int ret = 0;
|
||||
|
||||
/* Get the bitfield values for input data format */
|
||||
if (in_raw_format && out_raw_format) {
|
||||
|
|
Loading…
Reference in a new issue