aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThais-ra <[email protected]>2024-08-03 07:22:36 +0000
committerGreg Kroah-Hartman <[email protected]>2024-08-13 11:26:33 +0200
commitbc41879dd624e712578d7afd612647f0fe31572d (patch)
treeeaf959b805e8f7d31a213d57c13291b80e3cb683
parentf0bf2c33ba5a4d5df5be94fa7d89a8bda4b26f67 (diff)
greybus: camera-gb: Fix a alignment bug on gb_camera_ops()
Fix checkpatch message "CHECK: Alignment should match open parenthesis". Signed-off-by: Thais-ra <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/greybus/gb-camera.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/greybus/gb-camera.h b/drivers/staging/greybus/gb-camera.h
index 5fc469101fc1..3e09147435a5 100644
--- a/drivers/staging/greybus/gb-camera.h
+++ b/drivers/staging/greybus/gb-camera.h
@@ -92,8 +92,8 @@ struct gb_camera_ops {
unsigned int *flags, struct gb_camera_stream *streams,
struct gb_camera_csi_params *csi_params);
int (*capture)(void *priv, u32 request_id,
- unsigned int streams, unsigned int num_frames,
- size_t settings_size, const void *settings);
+ unsigned int streams, unsigned int num_frames,
+ size_t settings_size, const void *settings);
int (*flush)(void *priv, u32 *request_id);
};