q_data = get_q_data(ctx, vb->vb2_queue->type);
 
        if (vb2_plane_size(vb, 0) < q_data->sizeimage) {
-               dprintk(ctx->dev, "%s data will not fit into plane"
-                                 "(%lu < %lu)\n", __func__,
-                                 vb2_plane_size(vb, 0),
-                                 (long)q_data->sizeimage);
+               dprintk(ctx->dev,
+                       "%s data will not fit into plane(%lu < %lu)\n",
+                       __func__, vb2_plane_size(vb, 0),
+                       (long)q_data->sizeimage);
                return -EINVAL;
        }
 
        snprintf(vfd->name, sizeof(vfd->name), "%s", emmaprp_videodev.name);
        pcdev->vfd = vfd;
        v4l2_info(&pcdev->v4l2_dev, EMMAPRP_MODULE_NAME
-                       " Device registered as /dev/video%d\n", vfd->num);
+                 " Device registered as /dev/video%d\n", vfd->num);
 
        platform_set_drvdata(pdev, pcdev);
 
 
                 * Platform hasn't set available data widths. This is bad.
                 * Warn and use a default.
                 */
-               dev_warn(&pdev->dev, "WARNING! Platform hasn't set available "
-                        "data widths, using default 10 bit\n");
+               dev_warn(&pdev->dev, "WARNING! Platform hasn't set available data widths, using default 10 bit\n");
                pcdev->platform_flags |= PXA_CAMERA_DATAWIDTH_10;
        }
        if (pcdev->platform_flags & PXA_CAMERA_DATAWIDTH_8)
                pcdev->width_flags |= 1 << 9;
        if (!pcdev->mclk) {
                dev_warn(&pdev->dev,
-                        "mclk == 0! Please, fix your platform data. "
-                        "Using default 20MHz\n");
+                        "mclk == 0! Please, fix your platform data. Using default 20MHz\n");
                pcdev->mclk = 20000000;
        }
 
 
 static bool flip_image;
 module_param(flip_image, bool, 0444);
 MODULE_PARM_DESC(flip_image,
-               "If set, the sensor will be instructed to flip the image "
-               "vertically.");
+               "If set, the sensor will be instructed to flip the image vertically.");
 
 static bool override_serial;
 module_param(override_serial, bool, 0444);
 MODULE_PARM_DESC(override_serial,
-               "The camera driver will normally refuse to load if "
-               "the XO 1.5 serial port is enabled.  Set this option "
-               "to force-enable the camera.");
+               "The camera driver will normally refuse to load if the XO 1.5 serial port is enabled.  Set this option to force-enable the camera.");
 
 /*
  * The structure describing our camera.