diff options
author | Ed Blake <ed.blake@sondrel.com> | 2017-10-06 10:57:50 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-10-09 04:43:30 -0400 |
commit | 596ec4bd958bc7c233d4129072d80272f21e2be1 (patch) | |
tree | bf1b404a5408ffa5fd8e390caebbf0b262c15823 /sound/soc/img | |
parent | 2ab18dfe87596e207f17ff0567660cd7356c715a (diff) |
ASoC: img-parallel-out: Check pm_runtime_get_sync return code
Check the the pm_runtime_get_sync return code and return if an error.
Signed-off-by: Ed Blake <ed.blake@sondrel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/img')
-rw-r--r-- | sound/soc/img/img-parallel-out.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/soc/img/img-parallel-out.c b/sound/soc/img/img-parallel-out.c index 2fc8a6372206..acc005217be0 100644 --- a/sound/soc/img/img-parallel-out.c +++ b/sound/soc/img/img-parallel-out.c | |||
@@ -153,6 +153,7 @@ static int img_prl_out_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) | |||
153 | { | 153 | { |
154 | struct img_prl_out *prl = snd_soc_dai_get_drvdata(dai); | 154 | struct img_prl_out *prl = snd_soc_dai_get_drvdata(dai); |
155 | u32 reg, control_set = 0; | 155 | u32 reg, control_set = 0; |
156 | int ret; | ||
156 | 157 | ||
157 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { | 158 | switch (fmt & SND_SOC_DAIFMT_INV_MASK) { |
158 | case SND_SOC_DAIFMT_NB_NF: | 159 | case SND_SOC_DAIFMT_NB_NF: |
@@ -164,7 +165,10 @@ static int img_prl_out_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) | |||
164 | return -EINVAL; | 165 | return -EINVAL; |
165 | } | 166 | } |
166 | 167 | ||
167 | pm_runtime_get_sync(prl->dev); | 168 | ret = pm_runtime_get_sync(prl->dev); |
169 | if (ret < 0) | ||
170 | return ret; | ||
171 | |||
168 | reg = img_prl_out_readl(prl, IMG_PRL_OUT_CTL); | 172 | reg = img_prl_out_readl(prl, IMG_PRL_OUT_CTL); |
169 | reg = (reg & ~IMG_PRL_OUT_CTL_EDGE_MASK) | control_set; | 173 | reg = (reg & ~IMG_PRL_OUT_CTL_EDGE_MASK) | control_set; |
170 | img_prl_out_writel(prl, reg, IMG_PRL_OUT_CTL); | 174 | img_prl_out_writel(prl, reg, IMG_PRL_OUT_CTL); |