ASoC: tlv320aic32x4: Fix spacing
authorAnnaliese McDermond <nh6z@nh6z.net>
Fri, 5 Apr 2019 21:54:30 +0000 (14:54 -0700)
committerMark 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

index 667ec2c..9e4899e 100644 (file)
@@ -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.