1 From b628d79fb130da3cbae59b4aaa14fbaf599a5e7c Mon Sep 17 00:00:00 2001
2 From: Dave Stevenson <dave.stevenson@raspberrypi.org>
3 Date: Wed, 21 Feb 2018 15:48:54 +0000
4 Subject: [PATCH 250/703] staging: bcm2835-camera: Fix logical continuation
7 Fix checkpatch errors for "Logical continuations should be
10 Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
12 .../vc04_services/bcm2835-camera/bcm2835-camera.c | 12 ++++++------
13 1 file changed, 6 insertions(+), 6 deletions(-)
15 --- a/drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.c
16 +++ b/drivers/staging/vc04_services/bcm2835-camera/bcm2835-camera.c
17 @@ -542,8 +542,8 @@ static int start_streaming(struct vb2_qu
20 /* enable the connection from camera to encoder (if applicable) */
21 - if (dev->capture.camera_port != dev->capture.port
22 - && dev->capture.camera_port) {
23 + if (dev->capture.camera_port != dev->capture.port &&
24 + dev->capture.camera_port) {
25 ret = vchiq_mmal_port_enable(dev->instance,
26 dev->capture.camera_port, NULL);
28 @@ -1043,8 +1043,8 @@ static int mmal_setup_components(struct
29 switch (mfmt->mmal_component) {
31 /* Make a further decision on port based on resolution */
32 - if (f->fmt.pix.width <= max_video_width
33 - && f->fmt.pix.height <= max_video_height)
34 + if (f->fmt.pix.width <= max_video_width &&
35 + f->fmt.pix.height <= max_video_height)
37 &dev->component[COMP_CAMERA]->output[CAM_PORT_VIDEO];
39 @@ -1101,8 +1101,8 @@ static int mmal_setup_components(struct
41 ret = vchiq_mmal_port_set_format(dev->instance, camera_port);
47 &dev->component[COMP_CAMERA]->output[CAM_PORT_VIDEO]) {
48 bool overlay_enabled =
49 !!dev->component[COMP_PREVIEW]->enabled;