From nobody Tue Dec 16 20:02:15 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4DECFC25B48 for ; Fri, 27 Oct 2023 02:45:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1345178AbjJ0CpW (ORCPT ); Thu, 26 Oct 2023 22:45:22 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48790 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229437AbjJ0CpU (ORCPT ); Thu, 26 Oct 2023 22:45:20 -0400 Received: from mailgw.kylinos.cn (mailgw.kylinos.cn [124.126.103.232]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4392AC4 for ; Thu, 26 Oct 2023 19:45:16 -0700 (PDT) X-UUID: 09bb871ec5264d518916be34c95de084-20231027 X-CID-P-RULE: Release_Ham X-CID-O-INFO: VERSION:1.1.32,REQID:71e1977d-41c2-466a-ad8e-5477f79bd0f0,IP:10, URL:0,TC:0,Content:0,EDM:0,RT:0,SF:-9,FILE:0,BULK:0,RULE:Release_Ham,ACTIO N:release,TS:1 X-CID-INFO: VERSION:1.1.32,REQID:71e1977d-41c2-466a-ad8e-5477f79bd0f0,IP:10,UR L:0,TC:0,Content:0,EDM:0,RT:0,SF:-9,FILE:0,BULK:0,RULE:Release_Ham,ACTION: release,TS:1 X-CID-META: VersionHash:5f78ec9,CLOUDID:242960d7-04a0-4e50-8742-3543eab8cb8e,B ulkID:231027104509HV6UX8IC,BulkQuantity:0,Recheck:0,SF:17|19|42|66|24|102, TC:nil,Content:0,EDM:-3,IP:-2,URL:0,File:nil,Bulk:nil,QS:nil,BEC:nil,COL:0 ,OSI:0,OSA:0,AV:0,LES:1,SPR:NO,DKR:0,DKP:0,BRR:0,BRE:0 X-CID-BVR: 0,NGT X-CID-BAS: 0,NGT,0,_ X-CID-FACTOR: TF_CID_SPAM_FAS,TF_CID_SPAM_FSD,TF_CID_SPAM_FSI,TF_CID_SPAM_SNR X-UUID: 09bb871ec5264d518916be34c95de084-20231027 X-User: chentao@kylinos.cn Received: from vt.. [(116.128.244.171)] by mailgw (envelope-from ) (Generic MTA with TLSv1.2 ECDHE-RSA-AES256-GCM-SHA384 256/256) with ESMTP id 842782961; Fri, 27 Oct 2023 10:45:06 +0800 From: chentao To: hamza.mahfooz@amd.com Cc: airlied@gmail.com, chentao@kylinos.cn, daniel@ffwll.ch, dri-devel@lists.freedesktop.org, kunwu.chan@hotmail.com, linux-kernel@vger.kernel.org, maarten.lankhorst@linux.intel.com, mripard@kernel.org, tzimmermann@suse.de Subject: [PATCH v2] drm/atomic-helper: Fix spelling mistake "preceeding" -> "preceding" Date: Fri, 27 Oct 2023 10:44:59 +0800 Message-Id: <20231027024459.12793-1-chentao@kylinos.cn> X-Mailer: git-send-email 2.34.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Kunwu Chan There is a typo in the kernel documentation for function drm_atomic_helper_wait_for_dependencies. Fix it. Signed-off-by: Kunwu Chan --- drivers/gpu/drm/drm_atomic_helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atom= ic_helper.c index 2444fc33dd7c..c3f677130def 100644 --- a/drivers/gpu/drm/drm_atomic_helper.c +++ b/drivers/gpu/drm/drm_atomic_helper.c @@ -2382,10 +2382,10 @@ int drm_atomic_helper_setup_commit(struct drm_atomi= c_state *state, EXPORT_SYMBOL(drm_atomic_helper_setup_commit); =20 /** - * drm_atomic_helper_wait_for_dependencies - wait for required preceeding = commits + * drm_atomic_helper_wait_for_dependencies - wait for required preceding c= ommits * @old_state: atomic state object with old state structures * - * This function waits for all preceeding commits that touch the same CRTC= as + * This function waits for all preceding commits that touch the same CRTC = as * @old_state to both be committed to the hardware (as signalled by * drm_atomic_helper_commit_hw_done()) and executed by the hardware (as si= gnalled * by calling drm_crtc_send_vblank_event() on the &drm_crtc_state.event). --=20 2.34.1