Browse Source

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: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
Guennadi Liakhovetski 12 years ago
parent
commit
14d32f1794
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/i2c/busses/i2c-rcar.c

+ 1 - 1
drivers/i2c/busses/i2c-rcar.c

@@ -306,7 +306,7 @@ scgd_find:
 	/*
 	 * keep icccr value
 	 */
-	priv->icccr = (scgd << (cdf_width) | cdf);
+	priv->icccr = scgd << cdf_width | cdf;
 
 	return 0;
 }