greybus: camera: Rename clock_mode to flags
authorJacopo Mondi <jacopo.mondi@linaro.org>
Tue, 23 Feb 2016 10:22:49 +0000 (11:22 +0100)
committerGreg Kroah-Hartman <gregkh@google.com>
Wed, 24 Feb 2016 06:39:20 +0000 (22:39 -0800)
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: Jacopo Mondi <jacopo.mondi@linaro.org>
Acked-by: Laurent Pinchart <laurent.pinchart@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/camera.c

index 3f205cb..444e218 100644 (file)
@@ -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;