media: i2c: imx214: Remove unneeded parentheses

The parentheses are not needed to calculate bit_rate_mbps.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: André Apitzsch <git@apitzsch.eu>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
This commit is contained in:
André Apitzsch 2025-06-30 21:05:21 +02:00 committed by Hans Verkuil
parent 5ae5074006
commit 6f1882872c

View File

@ -1029,8 +1029,8 @@ static int imx214_start_streaming(struct imx214 *imx214)
return ret;
}
bit_rate_mbps = (imx214->pll.pixel_rate_csi / 1000000)
* imx214->pll.bits_per_pixel;
bit_rate_mbps = imx214->pll.pixel_rate_csi / 1000000
* imx214->pll.bits_per_pixel;
ret = cci_write(imx214->regmap, IMX214_REG_REQ_LINK_BIT_RATE,
IMX214_LINK_BIT_RATE_MBPS(bit_rate_mbps), NULL);
if (ret) {