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

Commit 53f96506 authored by Fabien Parent's avatar Fabien Parent Committed by Greg Kroah-Hartman
Browse files

greybus: camera: disable E2EFC on CSI connection



Following Toshiba's recommendation we shouldn't use E2EFC on a CSI connection.
Disable E2EFC on the CSI connection.

Signed-off-by: default avatarFabien Parent <fparent@baylibre.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent aa2a5459
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -831,9 +831,7 @@ static int gb_camera_connection_init(struct gb_connection *connection)
	 * Create the data connection between camera module CDSI0 and APB CDS1.
	 * The CPort IDs are hardcoded by the ES2 bridges.
	 */
	/* FIXME: remove E2EFC */
	cport_flags = GB_SVC_CPORT_FLAG_E2EFC | GB_SVC_CPORT_FLAG_CSD_N |
			GB_SVC_CPORT_FLAG_CSV_N;
	cport_flags = GB_SVC_CPORT_FLAG_CSD_N | GB_SVC_CPORT_FLAG_CSV_N;
	ret = gb_svc_connection_create(svc, connection->intf->interface_id,
				       ES2_APB_CDSI0_CPORT, svc->ap_intf_id,
				       ES2_APB_CDSI1_CPORT, cport_flags);