From patchwork Thu Sep 5 11:25:05 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 825756 Received: from relmlie5.idc.renesas.com (relmlor1.renesas.com [210.160.252.171]) by smtp.subspace.kernel.org (Postfix) with ESMTP id EF049199947; Thu, 5 Sep 2024 11:25:15 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=210.160.252.171 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725535518; cv=none; b=X7Ax0zws4UAMC7aIagbav4JDOaxKPU54CVmrm7pLBL3J2LYETPdpLb69wnUxj4exVdfJ8uR3K7XluzZaAQR6Nj2KaRJGf0C9Sum5U2s9ii2PuV6DHFe8iGIgjBZXpZ6hR14QWoeULgLYbpz0B5D2A2O102bNRnHshLc8vYA4T+A= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1725535518; c=relaxed/simple; bh=EWTfBs+uWTA9OtruiYJeZwqDqNVcY059DYEzHwpGh0E=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=RNxAKN7I0AlajEp8iQGuJLsCISox61sdhuZjmc+9NZWGhQUcDeNch+rpGtc8rv4BztRzSJYqz8Sl7tl6sddOYdLYZz+EOniNLYQIcI9msj8wrnm4+zQXXJgdqGYpd4BLvyCfqTmG5d3AmZLxIwUkQB/iOFpKJZf//8Sm+m3xdsI= 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.171 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-IronPort-AV: E=Sophos;i="6.10,204,1719846000"; d="scan'208";a="217640246" Received: from unknown (HELO relmlir6.idc.renesas.com) ([10.200.68.152]) by relmlie5.idc.renesas.com with ESMTP; 05 Sep 2024 20:25:14 +0900 Received: from localhost.localdomain (unknown [10.226.93.27]) by relmlir6.idc.renesas.com (Postfix) with ESMTP id 228CC420ED40; Thu, 5 Sep 2024 20:25:10 +0900 (JST) From: Biju Das To: Mauro Carvalho Chehab Cc: Biju Das , Laurent Pinchart , Hans Verkuil , Benjamin Gaignard , Hien Huynh , linux-media@vger.kernel.org, Geert Uytterhoeven , Prabhakar Mahadev Lad , Biju Das , linux-renesas-soc@vger.kernel.org, Pavel Machek Subject: [PATCH] media: platform: rzg2l-cru: rzg2l-video: Fix the comment in rzg2l_cru_start_streaming_vq() Date: Thu, 5 Sep 2024 12:25:05 +0100 Message-ID: <20240905112508.160560-1-biju.das.jz@bp.renesas.com> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-media@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Replace "buffer." -> "buffer", for consistency with rest of the comment blocks in rzg2l_cru_start_streaming_vq(). Reported-by: Pavel Machek Closes: https://lore.kernel.org/all/ZtWNFuw70nkB37EK@duo.ucw.cz/ Signed-off-by: Biju Das --- This patch have merge dependency on [1] [1] https://lore.kernel.org/all/20240826110740.271212-1-biju.das.jz@bp.renesas.com/ --- drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c index bbf4674f888d..d17e3eac4177 100644 --- a/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c +++ b/drivers/media/platform/renesas/rzg2l-cru/rzg2l-video.c @@ -648,7 +648,7 @@ static int rzg2l_cru_start_streaming_vq(struct vb2_queue *vq, unsigned int count goto assert_aresetn; } - /* Allocate scratch buffer. */ + /* Allocate scratch buffer */ cru->scratch = dma_alloc_coherent(cru->dev, cru->format.sizeimage, &cru->scratch_phys, GFP_KERNEL); if (!cru->scratch) {