Skip to content

Commit fbcce2a

Browse files
committed
Fix line length
1 parent 8bfc6e7 commit fbcce2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/media/i2c/imx219.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -963,8 +963,8 @@ static int imx219_configure_lanes(struct imx219 *imx219)
963963
/* Write the appropriate PLL settings for the number of MIPI lanes */
964964
return cci_multi_reg_write(imx219->regmap,
965965
imx219->lanes == 2 ? imx219_2lane_regs : imx219_4lane_regs,
966-
imx219->lanes == 2 ? ARRAY_SIZE(imx219_2lane_regs) : ARRAY_SIZE(imx219_4lane_regs),
967-
NULL);
966+
imx219->lanes == 2 ? ARRAY_SIZE(imx219_2lane_regs) :
967+
ARRAY_SIZE(imx219_4lane_regs), NULL);
968968
};
969969

970970
static int imx219_start_streaming(struct imx219 *imx219,

0 commit comments

Comments
 (0)