staging: bcm2835-camera: Modify function call formatting
authorAbraham Samuel Adekunle <abrahamadekunle50@gmail.com>
Sat, 22 Mar 2025 15:36:53 +0000 (16:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 Apr 2025 05:38:07 +0000 (06:38 +0100)
The line is a function call which ends with an opening parenthesis
thereby not adhering to the Linux kernel coding style.

Modify the function call to include parameters on the same line as
the opening parenthesis to improve readability and consistency while
adhering to Linux coding styles.

Reported by checkpatch:

CHECK: Lines should not end with '('

Signed-off-by: Abraham Samuel Adekunle <abrahamadekunle50@gmail.com>
Link: https://lore.kernel.org/r/Z97ZFURPvDcTkjjf@HP-650
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/bcm2835-camera/controls.c

index 6bce45925bf1f9b552d04e95d86c5cdbe09b4745..e670226f1edf77a13e303e13dae783922175311b 100644 (file)
@@ -533,17 +533,15 @@ static int ctrl_set_image_effect(struct bcm2835_mmal_dev *dev,
 
                control = &dev->component[COMP_CAMERA]->control;
 
-               ret = vchiq_mmal_port_parameter_set(
-                               dev->instance, control,
-                               MMAL_PARAMETER_IMAGE_EFFECT_PARAMETERS,
-                               &imagefx, sizeof(imagefx));
+               ret = vchiq_mmal_port_parameter_set(dev->instance, control,
+                                                   MMAL_PARAMETER_IMAGE_EFFECT_PARAMETERS,
+                                                   &imagefx, sizeof(imagefx));
                if (ret)
                        goto exit;
 
-               ret = vchiq_mmal_port_parameter_set(
-                               dev->instance, control,
-                               MMAL_PARAMETER_COLOUR_EFFECT,
-                               &dev->colourfx, sizeof(dev->colourfx));
+               ret = vchiq_mmal_port_parameter_set(dev->instance, control,
+                                                   MMAL_PARAMETER_COLOUR_EFFECT,
+                                                   &dev->colourfx, sizeof(dev->colourfx));
        }
 
 exit: