greybus: camera: Set link power mode to HS-G2 with 2 lanes
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Sat, 19 Dec 2015 06:38:56 +0000 (08:38 +0200)
committerGreg Kroah-Hartman <gregkh@google.com>
Tue, 22 Dec 2015 00:38:23 +0000 (16:38 -0800)
HS-G1 isn't enough for all camera modules. The gear will need to be
computed dynamically, but for now hardcode it to 2 with 2 lanes.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/camera.c

index 556226a..592c3ef 100644 (file)
@@ -600,12 +600,12 @@ static int gb_camera_connection_init(struct gb_connection *connection)
                goto error;
 
        ret = gb_svc_link_config(svc, connection->intf->interface_id,
-                                GB_SVC_LINK_CONFIG_BURST_HS_A, 1, 1, 0);
+                                GB_SVC_LINK_CONFIG_BURST_HS_A, 2, 2, 0);
        if (ret < 0)
                goto error;
 
        ret = gb_svc_link_config(svc, svc->ap_intf_id,
-                                GB_SVC_LINK_CONFIG_BURST_HS_A, 1, 1, 0);
+                                GB_SVC_LINK_CONFIG_BURST_HS_A, 2, 2, 0);
        if (ret < 0)
                goto error;