staging: bcm2835-camera: Fix alignment should match open parenthesis
authorDave Stevenson <dave.stevenson@raspberrypi.org>
Mon, 29 Oct 2018 15:55:42 +0000 (15:55 +0000)
committerpopcornmix <popcornmix@gmail.com>
Mon, 13 May 2019 23:08:12 +0000 (00:08 +0100)
Fix up checkpatch "Alignment should match open parenthesis" errors

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.c

index f1fb119..44a4c36 100644 (file)
@@ -1934,7 +1934,7 @@ static int bcm2835_mmal_probe(struct platform_device *pdev)
                ret = bm2835_mmal_init_controls(dev, &dev->ctrl_handler);
                if (ret < 0) {
                        v4l2_err(&dev->v4l2_dev, "%s: could not init controls: %d\n",
-                               __func__, ret);
+                                __func__, ret);
                        goto unreg_dev;
                }
                dev->v4l2_dev.ctrl_handler = &dev->ctrl_handler;
@@ -1944,7 +1944,7 @@ static int bcm2835_mmal_probe(struct platform_device *pdev)
                ret = mmal_init(dev);
                if (ret < 0) {
                        v4l2_err(&dev->v4l2_dev, "%s: mmal init failed: %d\n",
-                               __func__, ret);
+                                __func__, ret);
                        goto unreg_dev;
                }
                /* initialize queue */
@@ -1966,7 +1966,7 @@ static int bcm2835_mmal_probe(struct platform_device *pdev)
                ret = bm2835_mmal_init_device(dev, &dev->vdev);
                if (ret < 0) {
                        v4l2_err(&dev->v4l2_dev, "%s: could not init device: %d\n",
-                               __func__, ret);
+                                __func__, ret);
                        goto unreg_dev;
                }
 
@@ -1976,7 +1976,7 @@ static int bcm2835_mmal_probe(struct platform_device *pdev)
                ret = mmal_setup_components(dev, &default_v4l2_format);
                if (ret < 0) {
                        v4l2_err(&dev->v4l2_dev, "%s: could not setup components: %d\n",
-                               __func__, ret);
+                                __func__, ret);
                        goto unreg_dev;
                }