When device-tree configures an unsupported combinaion of number of lanes, and link frequency, e.g. by exceeding 1Gbps per lane, 0 is returned, wrongly indicating success. In this case, return EINVAL instead! This fixes a divide-by-zero crash in tc358743_num_csi_lanes_needed, where the divisor becomes zero because pll_fbd has been left at 0 by probe. Signed-off-by: Josua Mayer <josua@xxxxxxxxxxxxx> --- drivers/media/i2c/tc358743.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/media/i2c/tc358743.c b/drivers/media/i2c/tc358743.c index 1b309bb743c7..f21da11caf22 100644 --- a/drivers/media/i2c/tc358743.c +++ b/drivers/media/i2c/tc358743.c @@ -1974,6 +1974,7 @@ static int tc358743_probe_of(struct tc358743_state *state) bps_pr_lane = 2 * endpoint.link_frequencies[0]; if (bps_pr_lane < 62500000U || bps_pr_lane > 1000000000U) { dev_err(dev, "unsupported bps per lane: %u bps\n", bps_pr_lane); + ret = -EINVAL; goto disable_clk; } -- 2.32.0