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=-10.0 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, 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 8F479C433DF for ; Wed, 5 Aug 2020 20:53:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7018E22CA1 for ; Wed, 5 Aug 2020 20:53:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727017AbgHEUxa (ORCPT ); Wed, 5 Aug 2020 16:53:30 -0400 Received: from smtprelay0216.hostedemail.com ([216.40.44.216]:43384 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725730AbgHEUx3 (ORCPT ); Wed, 5 Aug 2020 16:53:29 -0400 Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay07.hostedemail.com (Postfix) with ESMTP id 5C1FC181D3026; Wed, 5 Aug 2020 20:53:28 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: farm00_4b167ce26fb2 X-Filterd-Recvd-Size: 2363 Received: from XPS-9350.home (unknown [47.151.133.149]) (Authenticated sender: joe@perches.com) by omf16.hostedemail.com (Postfix) with ESMTPA; Wed, 5 Aug 2020 20:53:26 +0000 (UTC) Message-ID: Subject: Re: [PATCH] drm/amdgpu: fix spelling mistake "Falied" -> "Failed" From: Joe Perches To: Alex Deucher , Colin King Cc: Alex Deucher , Christian =?ISO-8859-1?Q?K=F6nig?= , David Airlie , Daniel Vetter , amd-gfx list , Maling list - DRI developers , kernel-janitors@vger.kernel.org, LKML Date: Wed, 05 Aug 2020 13:53:25 -0700 In-Reply-To: References: <20200805113510.18277-1-colin.king@canonical.com> Content-Type: text/plain; charset="ISO-8859-1" User-Agent: Evolution 3.36.3-0ubuntu1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 2020-08-05 at 16:01 -0400, Alex Deucher wrote: > On Wed, Aug 5, 2020 at 7:35 AM Colin King wrote: > > From: Colin Ian King > > > > There is a spelling mistake in a DRM_ERROR message. Fix it. > > > > Signed-off-by: Colin Ian King > > This is already fixed. This fix is not in today's -next. Perhaps whatever tree it's fixed in should be in -next. $ git show --oneline -s d15fe4ec0435 (HEAD, tag: next-20200805, origin/master, origin/HEAD) Add linux-next specific files for 20200805 $ git grep -i falied drivers drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c: DRM_ERROR("Falied to terminate tmr\n"); > > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c [] > > @@ -2010,7 +2010,7 @@ static int psp_suspend(void *handle) > > > > ret = psp_tmr_terminate(psp); > > if (ret) { > > - DRM_ERROR("Falied to terminate tmr\n"); > > + DRM_ERROR("Failed to terminate tmr\n"); > > return ret; > > }