From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6C0B8C433C1 for ; Sat, 20 Mar 2021 19:11:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 42FB861940 for ; Sat, 20 Mar 2021 19:11:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229884AbhCTTKz (ORCPT ); Sat, 20 Mar 2021 15:10:55 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56946 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229815AbhCTTKk (ORCPT ); Sat, 20 Mar 2021 15:10:40 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:e::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 339F6C061574 for ; Sat, 20 Mar 2021 12:10:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Type:MIME-Version: References:Message-ID:In-Reply-To:Subject:cc:To:From:Date:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=WVbziHs+8RJjPkXPEqnAbYqzwG8L6icYzQ9QJIEx+Ik=; b=Y7kO3A/x6+co6U9X2TY/Yu32rZ BU2r9E/eHjzuWtsFYz4FASj558I8rn0zTyAMkBRw4z05EAsuChJ01OpIqf22c+IJKyAaFP9kTLqxd AYZB9MO0Hwdm1NhdSfBc1kxSaPoFEQ0D35uasyTSlzYCwbwd/XMGUT9FdIycxmnR7tIFdGo9fYxY0 1wf+hjC8RPf+zt6OjKHeKam3n6hComiBiRjzMBEi8heyUtpr+j5WIQShjFCcunL15LR2pGlpHAStG 1vNl9TnZTlzRwu56Txnf7bPdTorMv6+VfdF2rennaY2WX8x8AhYjVvqko8p/rleG/a670nUOmWbue SE8SZBow==; Received: from rdunlap (helo=localhost) by bombadil.infradead.org with local-esmtp (Exim 4.94 #2 (Red Hat Linux)) id 1lNgzX-001zoH-NJ; Sat, 20 Mar 2021 19:10:32 +0000 Date: Sat, 20 Mar 2021 12:10:31 -0700 (PDT) From: Randy Dunlap To: Bhaskar Chowdhury cc: maarten.lankhorst@linux.intel.com, mripard@kernel.org, tzimmermann@suse.de, airlied@linux.ie, daniel@ffwll.ch, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drm/atomic: Couple of typo fixes In-Reply-To: <20210320183642.10886-1-unixbhaskar@gmail.com> Message-ID: <5cb1810-152-7ec3-ffd2-4a6fd1d6c01c@bombadil.infradead.org> References: <20210320183642.10886-1-unixbhaskar@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Sender: Randy Dunlap X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210320_121031_783414_18C09EB7 X-CRM114-Status: GOOD ( 15.09 ) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, 21 Mar 2021, Bhaskar Chowdhury wrote: > > s/seralization/serialization/ > s/parallism/parallelism/ > > Signed-off-by: Bhaskar Chowdhury Acked-by: Randy Dunlap > --- > drivers/gpu/drm/drm_atomic.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c > index dda60051854b..e1e4500aaca4 100644 > --- a/drivers/gpu/drm/drm_atomic.c > +++ b/drivers/gpu/drm/drm_atomic.c > @@ -1148,7 +1148,7 @@ EXPORT_SYMBOL(drm_atomic_add_encoder_bridges); > * This function walks the current configuration and adds all connectors > * currently using @crtc to the atomic configuration @state. Note that this > * function must acquire the connection mutex. This can potentially cause > - * unneeded seralization if the update is just for the planes on one CRTC. Hence > + * unneeded serialization if the update is just for the planes on one CRTC. Hence > * drivers and helpers should only call this when really needed (e.g. when a > * full modeset needs to happen due to some change). > * > @@ -1213,7 +1213,7 @@ EXPORT_SYMBOL(drm_atomic_add_affected_connectors); > * > * Since acquiring a plane state will always also acquire the w/w mutex of the > * current CRTC for that plane (if there is any) adding all the plane states for > - * a CRTC will not reduce parallism of atomic updates. > + * a CRTC will not reduce parallelism of atomic updates. > * > * Returns: > * 0 on success or can fail with -EDEADLK or -ENOMEM. When the error is EDEADLK > -- > 2.26.2 > >