mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 12:55:24 -04:00
staging: bcm2835-camera: Add spaces around '<<'
This patch fixes the checkpatch.pl issue: CHECK: spaces preferred around that '<<' (ctx:VxV) Signed-off-by: Narcisa Ana Maria Vasile <narcisaanamaria12@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a68eb156d2
commit
3213a6e5a8
@@ -1271,11 +1271,11 @@ int bm2835_mmal_init_controls(struct bm2835_mmal_dev *dev,
|
||||
* mismatches.
|
||||
*/
|
||||
int i;
|
||||
mask = 1<<V4L2_SCENE_MODE_NONE;
|
||||
mask = 1 << V4L2_SCENE_MODE_NONE;
|
||||
for (i = 0;
|
||||
i < ARRAY_SIZE(scene_configs);
|
||||
i++) {
|
||||
mask |= 1<<scene_configs[i].v4l2_scene;
|
||||
mask |= 1 << scene_configs[i].v4l2_scene;
|
||||
}
|
||||
mask = ~mask;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user