aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortangbin <[email protected]>2024-09-03 17:03:01 +0800
committerMark Brown <[email protected]>2024-09-03 12:36:59 +0100
commita14e9323267d8f20bdb5a1cebc4abc5abd80cfb2 (patch)
treee4fd2c423157bf983b9f099e29d0240d7229ad38
parentdc70fd02404398388f3471a57b9f4e26c0eeba5e (diff)
ASoC: loongson: remove unnecessary assignment in i2s_resume()
In this function, the assignment ret is unnecessary, thus remove it. Signed-off-by: tangbin <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Mark Brown <[email protected]>
-rw-r--r--sound/soc/loongson/loongson_i2s.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sound/soc/loongson/loongson_i2s.c b/sound/soc/loongson/loongson_i2s.c
index d45228a3a558..3b9786076501 100644
--- a/sound/soc/loongson/loongson_i2s.c
+++ b/sound/soc/loongson/loongson_i2s.c
@@ -255,13 +255,10 @@ static int i2s_suspend(struct device *dev)
static int i2s_resume(struct device *dev)
{
struct loongson_i2s *i2s = dev_get_drvdata(dev);
- int ret;
regcache_cache_only(i2s->regmap, false);
regcache_mark_dirty(i2s->regmap);
- ret = regcache_sync(i2s->regmap);
-
- return ret;
+ return regcache_sync(i2s->regmap);
}
const struct dev_pm_ops loongson_i2s_pm = {