From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 794B430BF68; Wed, 20 May 2026 17:26:36 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779297997; cv=none; b=OKwEhJY4xH36ux9K5ukYl0vP94RknsQouHSq1cKoReiJHYoB5NAkYGlXUlHXSPNjCZ5Y45R4kjGhSnp2LQwnOdr5cboKAR8CdFEgKTHHcWOAlXuOGrErXazPeqQkX0fsH/uQglQDxyFAQD/cHOY2KPGzOk57emyoG6LTrpX6a1Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1779297997; c=relaxed/simple; bh=HvpujqBfulUjRidpgCbDzQbU6uIoee0Y/ANg3Q6KS/k=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=kxvRsLYPWEIgyqbqJvlr0siT/xQ0nFMfz6pNt1AxiT6HDhL53ZFtwsg6Toozj4yBtvbPau8NNaqchA8DQlJWpi5MJuFlmIKtfmNsKLh1JAJYiKsWySeOcTKvrY04EiiZJX//1hw40yHWnhNmXtvgYmi1ooQhehSXXsD5TOA/dhw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=2XUziq6v; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="2XUziq6v" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DF41D1F000E9; Wed, 20 May 2026 17:26:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1779297996; bh=CF1SMEErsPMbNb3PISXdw2fh1DF98BNKAZKNYkYvSZo=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=2XUziq6vpRqnUI0jdAy9mIrWjVpwgWJ9rgUTM8G2UPw1nh37cnoOfFqmHH/6Esi5P McnJP0y1bfrgHcp1It2436Swci8iPInncVIn3hdFKPeXY58GzmFVjkJ1CTp15o6gnw 5kx0ap7XMqHJvO1cLVFcQDkcfp62sqfDjojf0JVI= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Pengyu Luo , Dmitry Baryshkov , Sasha Levin Subject: [PATCH 6.18 243/957] drm/msm/dsi: add the missing parameter description Date: Wed, 20 May 2026 18:12:06 +0200 Message-ID: <20260520162139.812949786@linuxfoundation.org> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260520162134.554764788@linuxfoundation.org> References: <20260520162134.554764788@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pengyu Luo [ Upstream commit 958adefc4c0fddee3b12269da5dd7cb49bac953f ] Add a description for is_bonded_dsi in dsi_adjust_pclk_for_compression to match the existing kernel-doc comment. Fixes: e4eb11b34d6c ("drm/msm/dsi: fix pclk rate calculation for bonded dsi") Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202603080314.XeqyRZ7A-lkp@intel.com/ Signed-off-by: Pengyu Luo Reviewed-by: Dmitry Baryshkov Patchwork: https://patchwork.freedesktop.org/patch/710112/ Link: https://lore.kernel.org/r/20260309100254.877801-1-mitltlatltl@gmail.com Signed-off-by: Dmitry Baryshkov Signed-off-by: Sasha Levin --- drivers/gpu/drm/msm/dsi/dsi_host.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/msm/dsi/dsi_host.c b/drivers/gpu/drm/msm/dsi/dsi_host.c index db6da99375a18..6cb634590e7a7 100644 --- a/drivers/gpu/drm/msm/dsi/dsi_host.c +++ b/drivers/gpu/drm/msm/dsi/dsi_host.c @@ -569,6 +569,7 @@ void dsi_link_clk_disable_v2(struct msm_dsi_host *msm_host) * dsi_adjust_pclk_for_compression() - Adjust the pclk rate for compression case * @mode: The selected mode for the DSI output * @dsc: DRM DSC configuration for this DSI output + * @is_bonded_dsi: True if two DSI controllers are bonded * * Adjust the pclk rate by calculating a new hdisplay proportional to * the compression ratio such that: -- 2.53.0