projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2390c9b
)
ASoC: tlv320aic32x4: Fix spacing
author
Annaliese McDermond
<nh6z@nh6z.net>
Fri, 5 Apr 2019 21:54:30 +0000
(14:54 -0700)
committer
Mark Brown
<broonie@kernel.org>
Mon, 8 Apr 2019 07:16:49 +0000
(14:16 +0700)
Fix some cosmetic spacing issues reported by Julia Lawall
<julia.lawall@lip6.fr>.
Signed-off-by: Annaliese McDermond <nh6z@nh6z.net>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/codecs/tlv320aic32x4-clk.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/codecs/tlv320aic32x4-clk.c
b/sound/soc/codecs/tlv320aic32x4-clk.c
index 667ec2c03508b8d089f32acd861bf3a0ca433979..9e4899eb1d8e832b92cb2556847cf16789eb3e06 100644
(file)
--- a/
sound/soc/codecs/tlv320aic32x4-clk.c
+++ b/
sound/soc/codecs/tlv320aic32x4-clk.c
@@
-165,8
+165,8
@@
static int clk_aic32x4_pll_calc_muldiv(struct clk_aic32x4_pll_muldiv *settings,
* of the multiplier. This is because we can't do floating point
* math in the kernel.
*/
-
multiplier = (u64) rate * settings->p * 10000;
-
do_div(multiplier, parent_rate);
+ multiplier = (u64) rate * settings->p * 10000;
+ do_div(multiplier, parent_rate);
/*
* J can't be over 64, so R can scale this.