media: rkisp1: isp: Fix whitespace issues
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Tue, 14 Jun 2022 19:11:06 +0000 (20:11 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Sun, 17 Jul 2022 11:18:56 +0000 (12:18 +0100)
Add missing blank lines after variable declaration blocks, and fix
indentation issues.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Dafna Hirschfeld <dafna@fastmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/platform/rockchip/rkisp1/rkisp1-isp.c

index 53f0516594ef07c901e09ce07c099d74ab071295..944d7bfa9b41ad6c2264863d1ce337647dcc2881 100644 (file)
@@ -79,7 +79,8 @@ rkisp1_isp_get_pad_fmt(struct rkisp1_isp *isp,
 {
        struct v4l2_subdev_state state = {
                .pads = isp->pad_cfg
-               };
+       };
+
        if (which == V4L2_SUBDEV_FORMAT_TRY)
                return v4l2_subdev_get_try_format(&isp->sd, sd_state, pad);
        else
@@ -93,7 +94,8 @@ rkisp1_isp_get_pad_crop(struct rkisp1_isp *isp,
 {
        struct v4l2_subdev_state state = {
                .pads = isp->pad_cfg
-               };
+       };
+
        if (which == V4L2_SUBDEV_FORMAT_TRY)
                return v4l2_subdev_get_try_crop(&isp->sd, sd_state, pad);
        else
@@ -893,8 +895,8 @@ static void rkisp1_isp_queue_event_sof(struct rkisp1_isp *isp)
        struct v4l2_event event = {
                .type = V4L2_EVENT_FRAME_SYNC,
        };
-       event.u.frame_sync.frame_sequence = isp->frame_sequence;
 
+       event.u.frame_sync.frame_sequence = isp->frame_sequence;
        v4l2_event_queue(isp->sd.devnode, &event);
 }