projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9e8a93a
)
ASoC: sun4i-i2s: Replace call to params_width by local variable
author
Maxime Ripard
<maxime.ripard@bootlin.com>
Wed, 21 Aug 2019 13:06:55 +0000
(15:06 +0200)
committer
Mark Brown
<broonie@kernel.org>
Wed, 21 Aug 2019 13:16:56 +0000
(14:16 +0100)
The sun4i_i2s_hw_params function already has a variable holding the value
returned by params_width, so let's just use that variable instead of
calling params_width multiple times.
Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com>
Link:
https://lore.kernel.org/r/f85a1c1e014080a4bbc3abd19bc8fdcb86f0981a.1566392800.git-series.maxime.ripard@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/sunxi/sun4i-i2s.c
patch
|
blob
|
history
diff --git
a/sound/soc/sunxi/sun4i-i2s.c
b/sound/soc/sunxi/sun4i-i2s.c
index 9ef784b8867c1c7088834e74c263186a9695d102..69162af9fd65f7c04bdc03d628d9907a01100686 100644
(file)
--- a/
sound/soc/sunxi/sun4i-i2s.c
+++ b/
sound/soc/sunxi/sun4i-i2s.c
@@
-487,7
+487,7
@@
static int sun4i_i2s_hw_params(struct snd_pcm_substream *substream,
}
i2s->playback_dma_data.addr_width = width;
- sr = i2s->variant->get_sr(i2s,
params_width(params)
);
+ sr = i2s->variant->get_sr(i2s,
word_size
);
if (sr < 0)
return -EINVAL;