Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4e5f96e authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: camera: ispif: Use proper type while comparing negative values."

parents eeebbae8 2fff040e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ int msm_ispif_get_ahb_clk_info(struct ispif_device *ispif_dev,
	}
	for (i = 0; i < count; i++) {
		ispif_8974_ahb_clk_info[i].clk_rate =
			 (rates[i] == 0) ? -1 : rates[i];
			 (rates[i] == 0) ? (long)-1 : rates[i];
		CDBG("clk_rate[%d] = %ld\n", i,
			 ispif_8974_ahb_clk_info[i].clk_rate);
	}