OSDN Git Service

media: v4l: rcar_fdp1: Fix indentation oddities
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Sun, 22 Apr 2018 08:00:08 +0000 (04:00 -0400)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Mon, 25 Mar 2019 18:14:56 +0000 (14:14 -0400)
Indentation is odd in several places, especially when printing messages
to the kernel log. Fix it to match the usual coding style.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/rcar_fdp1.c

index 6bda1ee..6a90bc4 100644 (file)
@@ -945,7 +945,7 @@ static void fdp1_configure_wpf(struct fdp1_ctx *ctx,
        u32 rndctl;
 
        pstride = q_data->format.plane_fmt[0].bytesperline
-                       << FD1_WPF_PSTRIDE_Y_SHIFT;
+               << FD1_WPF_PSTRIDE_Y_SHIFT;
 
        if (q_data->format.num_planes > 1)
                pstride |= q_data->format.plane_fmt[1].bytesperline
@@ -1139,8 +1139,8 @@ static int fdp1_m2m_job_ready(void *priv)
        int dstbufs = 1;
 
        dprintk(ctx->fdp1, "+ Src: %d : Dst: %d\n",
-                       v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx),
-                       v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx));
+               v4l2_m2m_num_src_bufs_ready(ctx->fh.m2m_ctx),
+               v4l2_m2m_num_dst_bufs_ready(ctx->fh.m2m_ctx));
 
        /* One output buffer is required for each field */
        if (V4L2_FIELD_HAS_BOTH(src_q_data->format.field))
@@ -1278,7 +1278,7 @@ static void fdp1_m2m_device_run(void *priv)
 
                fdp1_queue_field(ctx, fbuf);
                dprintk(fdp1, "Queued Buffer [%d] last_field:%d\n",
-                               i, fbuf->last_field);
+                       i, fbuf->last_field);
        }
 
        /* Queue as many jobs as our data provides for */
@@ -1337,7 +1337,7 @@ static void device_frame_end(struct fdp1_dev *fdp1,
        fdp1_job_free(fdp1, job);
 
        dprintk(fdp1, "curr_ctx->num_processed %d curr_ctx->translen %d\n",
-                       ctx->num_processed, ctx->translen);
+               ctx->num_processed, ctx->translen);
 
        if (ctx->num_processed == ctx->translen ||
                        ctx->aborting) {
@@ -1362,7 +1362,7 @@ static int fdp1_vidioc_querycap(struct file *file, void *priv,
        strscpy(cap->driver, DRIVER_NAME, sizeof(cap->driver));
        strscpy(cap->card, DRIVER_NAME, sizeof(cap->card));
        snprintf(cap->bus_info, sizeof(cap->bus_info),
-                       "platform:%s", DRIVER_NAME);
+                "platform:%s", DRIVER_NAME);
        return 0;
 }
 
@@ -1993,13 +1993,13 @@ static void fdp1_stop_streaming(struct vb2_queue *q)
                /* Free smsk_data */
                if (ctx->smsk_cpu) {
                        dma_free_coherent(ctx->fdp1->dev, ctx->smsk_size,
-                                       ctx->smsk_cpu, ctx->smsk_addr[0]);
+                                         ctx->smsk_cpu, ctx->smsk_addr[0]);
                        ctx->smsk_addr[0] = ctx->smsk_addr[1] = 0;
                        ctx->smsk_cpu = NULL;
                }
 
                WARN(!list_empty(&ctx->fields_queue),
-                               "Buffer queue not empty");
+                    "Buffer queue not empty");
        } else {
                /* Empty Capture queues (Jobs) */
                struct fdp1_job *job;
@@ -2021,10 +2021,10 @@ static void fdp1_stop_streaming(struct vb2_queue *q)
                fdp1_field_complete(ctx, ctx->previous);
 
                WARN(!list_empty(&ctx->fdp1->queued_job_list),
-                               "Queued Job List not empty");
+                    "Queued Job List not empty");
 
                WARN(!list_empty(&ctx->fdp1->hw_job_list),
-                               "HW Job list not empty");
+                    "HW Job list not empty");
        }
 }
 
@@ -2110,7 +2110,7 @@ static int fdp1_open(struct file *file)
                                     fdp1_ctrl_deint_menu);
 
        ctrl = v4l2_ctrl_new_std(&ctx->hdl, &fdp1_ctrl_ops,
-                       V4L2_CID_MIN_BUFFERS_FOR_CAPTURE, 1, 2, 1, 1);
+                                V4L2_CID_MIN_BUFFERS_FOR_CAPTURE, 1, 2, 1, 1);
        if (ctrl)
                ctrl->flags |= V4L2_CTRL_FLAG_VOLATILE;
 
@@ -2347,8 +2347,8 @@ static int fdp1_probe(struct platform_device *pdev)
                goto release_m2m;
        }
 
-       v4l2_info(&fdp1->v4l2_dev,
-                       "Device registered as /dev/video%d\n", vfd->num);
+       v4l2_info(&fdp1->v4l2_dev, "Device registered as /dev/video%d\n",
+                 vfd->num);
 
        /* Power up the cells to read HW */
        pm_runtime_enable(&pdev->dev);
@@ -2367,7 +2367,7 @@ static int fdp1_probe(struct platform_device *pdev)
                break;
        default:
                dev_err(fdp1->dev, "FDP1 Unidentifiable (0x%08x)\n",
-                               hw_version);
+                       hw_version);
        }
 
        /* Allow the hw to sleep until an open call puts it to use */