Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27e18d8c authored by Jacopo Mondi's avatar Jacopo Mondi Committed by Greg Kroah-Hartman
Browse files

greybus: camera: Rename clock_mode to flags



Rename the 'clock_mode' parameter to a more generic 'flags' in the csi
bus configuration structure.
Define flags value for continuous clock mode.

Signed-off-by: default avatarJacopo Mondi <jacopo.mondi@linaro.org>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 446091c9
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -158,7 +158,8 @@ static int gb_camera_set_power_mode(struct gb_camera *gcam, bool hs)

struct ap_csi_config_request {
	__u8 csi_id;
	__u8 clock_mode;
	__u8 flags;
#define GB_CAMERA_CSI_FLAG_CLOCK_CONTINUOUS 0x01
	__u8 num_lanes;
	__u8 padding;
	__le32 bus_freq;
@@ -267,7 +268,7 @@ static int gb_camera_configure_streams(struct gb_camera *gcam,

	if (nstreams) {
		csi_cfg.csi_id = 1;
		csi_cfg.clock_mode = 0;
		csi_cfg.flags = 0;
		csi_cfg.num_lanes = 4;
		csi_cfg.bus_freq = cpu_to_le32(960000000);
		csi_cfg.lines_per_second = resp->lines_per_second;