mirror of
https://github.com/torvalds/linux.git
synced 2026-07-30 19:21:28 +02:00
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:
parent
5ae5074006
commit
6f1882872c
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user