Skip to content

Commit ed4ed05

Browse files
aescolarkartben
authored andcommitted
drivers/video/video_ctrls: Fix code compliance issues
Fix issues detected by checkpatch Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
1 parent d20adfe commit ed4ed05

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

drivers/video/video_ctrls.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,8 @@ int video_set_ctrl(const struct device *dev, struct video_control *control)
362362
/* Call driver's set_ctrl */
363363
if (DEVICE_API_GET(video, ctrl->vdev->dev)->set_ctrl) {
364364
ret = DEVICE_API_GET(video, ctrl->vdev->dev)
365-
->set_ctrl(ctrl->vdev->dev, ctrl->cluster ? ctrl->cluster->id : ctrl->id);
365+
->set_ctrl(ctrl->vdev->dev,
366+
ctrl->cluster ? ctrl->cluster->id : ctrl->id);
366367
if (ret) {
367368
goto restore;
368369
}

0 commit comments

Comments
 (0)