diff mbox series

media: imx-jpeg: Fix incorrect indentation

Message ID 20230215160800.12621-1-laurent.pinchart@ideasonboard.com
State Accepted
Commit a8ca0cf1ff53c011e7654c4c2e9c1bcf297204b3
Headers show
Series media: imx-jpeg: Fix incorrect indentation | expand

Commit Message

Laurent Pinchart Feb. 15, 2023, 4:08 p.m. UTC
Variable initialization code in notify_src_chg() is incorrectly
indented. Fix it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
 drivers/media/platform/nxp/imx-jpeg/mxc-jpeg.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)


base-commit: 83e0f265aa8d0e37cc8e15d318b64da0ec03ff41
diff mbox series

Patch

diff --git a/drivers/media/platform/nxp/imx-jpeg/mxc-jpeg.c b/drivers/media/platform/nxp/imx-jpeg/mxc-jpeg.c
index f085f14d676a..15966169f3cd 100644
--- a/drivers/media/platform/nxp/imx-jpeg/mxc-jpeg.c
+++ b/drivers/media/platform/nxp/imx-jpeg/mxc-jpeg.c
@@ -497,10 +497,9 @@  static void notify_eos(struct mxc_jpeg_ctx *ctx)
 static void notify_src_chg(struct mxc_jpeg_ctx *ctx)
 {
 	const struct v4l2_event ev = {
-			.type = V4L2_EVENT_SOURCE_CHANGE,
-			.u.src_change.changes =
-			V4L2_EVENT_SRC_CH_RESOLUTION,
-		};
+		.type = V4L2_EVENT_SOURCE_CHANGE,
+		.u.src_change.changes = V4L2_EVENT_SRC_CH_RESOLUTION,
+	};
 
 	dev_dbg(ctx->mxc_jpeg->dev, "Notify app event SRC_CH_RESOLUTION");
 	v4l2_event_queue_fh(&ctx->fh, &ev);