diff options
author | Mark Brown <broonie@kernel.org> | 2023-10-10 18:07:17 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-10-10 18:07:17 +0200 |
commit | 3c716e7f8acd039864b17f63d8506862b8c63f82 (patch) | |
tree | 3671be90ff9cd8f5cd6c547e7af5d35b0d6745a1 /sound/soc/pxa | |
parent | ASoC: fsl: mpc5200_dma.c: Fix warning of Function parameter or member not des... (diff) | |
parent | ASoC: cs42l43: Update values for bias sense (diff) | |
download | linux-3c716e7f8acd039864b17f63d8506862b8c63f82.tar.xz linux-3c716e7f8acd039864b17f63d8506862b8c63f82.zip |
ASoC: Merge fixes for consistent cs42l43 schema
We have adjacent changes for the cs42l43 DT schema, merge the fixes
branch up so that there's a single thing for people to base future
changes on.
Diffstat (limited to 'sound/soc/pxa')
-rw-r--r-- | sound/soc/pxa/pxa-ssp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c index b70034c07eee..b8a3cb8b7597 100644 --- a/sound/soc/pxa/pxa-ssp.c +++ b/sound/soc/pxa/pxa-ssp.c @@ -773,7 +773,7 @@ static int pxa_ssp_probe(struct snd_soc_dai *dai) if (IS_ERR(priv->extclk)) { ret = PTR_ERR(priv->extclk); if (ret == -EPROBE_DEFER) - return ret; + goto err_priv; priv->extclk = NULL; } |