Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 14d32f17 authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Wolfram Sang
Browse files

i2c: rcar: (cosmetic) remove superfluous parenthesis



A recent patch added even more superfluous parenthesis to those, which
already were there. Remove them again.

Signed-off-by: default avatarGuennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
Signed-off-by: default avatarWolfram Sang <wsa@the-dreams.de>
parent 45f176ae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -306,7 +306,7 @@ static int rcar_i2c_clock_calculate(struct rcar_i2c_priv *priv,
	/*
	 * keep icccr value
	 */
	priv->icccr = (scgd << (cdf_width) | cdf);
	priv->icccr = scgd << cdf_width | cdf;

	return 0;
}