From patchwork Sat Apr 12 06:12:54 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 14048896 X-Patchwork-Delegate: kieran@bingham.xyz Received: from relmlie6.idc.renesas.com (relmlor2.renesas.com [210.160.252.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 96E8E2367CE for ; Sat, 12 Apr 2025 06:13:13 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=210.160.252.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744438396; cv=none; b=bWiu0wuYNOwRv+/9V8iEz09fwZiRSveiUALXdD3WNgXu8vwhx9SNaPBNu/laooXlxVxyxc9odux4wE9v+4qHBiZsqYVslRbLJR3a8NXTwtI7cxjoZONaXokSr84ir0AKKsl1zWxOtw8Q3R1pmiieUiT+w6p7oCox/r9zocHgi+k= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1744438396; c=relaxed/simple; bh=SwliHp3GHGTEzTMefRyriB69Ya71mVnNAmt8N/n5ehI=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=WL8YJT4wCaTGXK0Gmqki1JfDHDzd/CWVhVuffJN/UL0n97YMh714xsz0qrkSQpIVSXj2Wq9Q7na2xv45i2mVZEMp5yu8Jo3Ubzy20duApaSKayVHMfifEM+tt44AbI1g2GMLXC0PWKlpggJqX/SmbZ754qYRpTxsCOMXn6MK77c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com; spf=pass smtp.mailfrom=bp.renesas.com; arc=none smtp.client-ip=210.160.252.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=bp.renesas.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bp.renesas.com X-CSE-ConnectionGUID: rnFd/sagQHef5cMiJ4U7hA== X-CSE-MsgGUID: fvYR9hHRTs+i1kZVd/Wr5Q== Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 12 Apr 2025 15:13:06 +0900 Received: from localhost.localdomain (unknown [10.226.92.23]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id EC20A4001DA9; Sat, 12 Apr 2025 15:13:02 +0900 (JST) From: Biju Das To: Biju Das , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter Cc: dri-devel@lists.freedesktop.org, linux-renesas-soc@vger.kernel.org, Geert Uytterhoeven , Prabhakar Mahadev Lad , Biju Das , Pavel Machek , Laurent Pinchart Subject: [PATCH v2] drm: renesas: rz-du: rzg2l_mipi_dsi: Update the comment in rzg2l_mipi_dsi_start_video() Date: Sat, 12 Apr 2025 07:12:54 +0100 Message-ID: <20250412061258.5447-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-renesas-soc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Add missing space in the comment in rzg2l_mipi_dsi_start_video(). Reported-by: Pavel Machek Closes: https://lore.kernel.org/all/ZPg7STHDn4LbLy7f@duo.ucw.cz/ Signed-off-by: Biju Das Reviewed-by: Geert Uytterhoeven Reviewed-by: Laurent Pinchart --- This issue is noticed while backporting this driver to 6.1.y-cip [1]. [1] https://lore.kernel.org/all/20230905160737.167877-1-biju.das.jz@bp.renesas.com/ v1->v2: * Updated commit header path rcar-du->rz-du. * Collected tags --- drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c b/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c index 96c014449547..dc6ab012cdb6 100644 --- a/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c +++ b/drivers/gpu/drm/renesas/rz-du/rzg2l_mipi_dsi.c @@ -479,7 +479,7 @@ static int rzg2l_mipi_dsi_start_video(struct rzg2l_mipi_dsi *dsi) u32 status; int ret; - /* Configuration for Blanking sequence and start video input*/ + /* Configuration for Blanking sequence and start video input */ vich1set0r = VICH1SET0R_HFPNOLP | VICH1SET0R_HBPNOLP | VICH1SET0R_HSANOLP | VICH1SET0R_VSTART; rzg2l_mipi_dsi_link_write(dsi, VICH1SET0R, vich1set0r);