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

Commit 50197fbf authored by Karthik Jayakumar's avatar Karthik Jayakumar Committed by Sridhar Gujje
Browse files

msm: camera: core: Fix extraneous variable declaration



Remove an extra variable declaration within a for loop.

CRs-Fixed: 2554484
Change-Id: I89885eeb8f89893ad7054d54a694a040e4c0bfbb
Signed-off-by: default avatarKarthik Jayakumar <kjayakum@codeaurora.org>
parent 35ca59b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -481,7 +481,7 @@ int32_t cam_context_prepare_dev_to_hw(struct cam_context *ctx,

	return rc;
put_ctx_ref:
	for (j; j >= 0; j--)
	for (; j >= 0; j--)
		cam_context_putref(ctx);
put_ref:
	for (--i; i >= 0; i--) {