From patchwork Mon Feb 24 08:56:37 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yuichiro Tsuji X-Patchwork-Id: 13988206 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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9A5E0C021BC for ; Mon, 24 Feb 2025 14:05:14 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 80A1210E41F; Mon, 24 Feb 2025 14:05:06 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=amazon.com header.i=@amazon.com header.b="fR4Mqg3f"; dkim-atps=neutral Received: from smtp-fw-80007.amazon.com (smtp-fw-80007.amazon.com [99.78.197.218]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8F6AE10E16F; Mon, 24 Feb 2025 08:58:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=amazon.com; i=@amazon.com; q=dns/txt; s=amazon201209; t=1740387489; x=1771923489; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=TehgUXQTMnMUl0FPqBaCA7g/l7jdHTIvAWt3UMFKf+8=; b=fR4Mqg3fOOEwW4VkmVMkNlWrTWuDnNsc09pO0OnEjRClqq4SNQJ/teOy a/342l+Hv/ijLe77WjHMeabDT7HNJZv07q6AW4TuIJWrQTNTokWdpn1fY 8OzDJmYoOL75akW0VIsR4iLcGoJy8kqRXc11ThYd8Qw9AdAjU6z/YmEqx Y=; X-IronPort-AV: E=Sophos;i="6.13,311,1732579200"; d="scan'208";a="380138562" Received: from pdx4-co-svc-p1-lb2-vlan2.amazon.com (HELO smtpout.prod.us-west-2.prod.farcaster.email.amazon.dev) ([10.25.36.210]) by smtp-border-fw-80007.pdx80.corp.amazon.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Feb 2025 08:58:06 +0000 Received: from EX19MTAUWC001.ant.amazon.com [10.0.21.151:25615] by smtpin.naws.us-west-2.prod.farcaster.email.amazon.dev [10.0.48.97:2525] with esmtp (Farcaster) id f1c2068b-ea59-453d-a8cd-3532fa8c50c3; Mon, 24 Feb 2025 08:58:05 +0000 (UTC) X-Farcaster-Flow-ID: f1c2068b-ea59-453d-a8cd-3532fa8c50c3 Received: from EX19D002AND002.ant.amazon.com (10.37.240.241) by EX19MTAUWC001.ant.amazon.com (10.250.64.174) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA) id 15.2.1544.14; Mon, 24 Feb 2025 08:58:02 +0000 Received: from HND-5CG1082HRX.ant.amazon.com (10.37.244.7) by EX19D002AND002.ant.amazon.com (10.37.240.241) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA) id 15.2.1544.14; Mon, 24 Feb 2025 08:57:59 +0000 From: Yuichiro Tsuji To: , CC: David Airlie , Simona Vetter , Yuichiro Tsuji Subject: [PATCH] drm/i915/gt/uc: Fix typo in a comment Date: Mon, 24 Feb 2025 17:56:37 +0900 Message-ID: <20250224085638.3500-2-yuichtsu@amazon.com> X-Mailer: git-send-email 2.43.5 MIME-Version: 1.0 X-Originating-IP: [10.37.244.7] X-ClientProxiedBy: EX19D043UWC001.ant.amazon.com (10.13.139.202) To EX19D002AND002.ant.amazon.com (10.37.240.241) X-Mailman-Approved-At: Mon, 24 Feb 2025 14:05:04 +0000 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Fix typo in a comment. explaination -> explanation Signed-off-by: Yuichiro Tsuji --- drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c index 3fce5c000144..c381e0e092ee 100644 --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c @@ -3011,7 +3011,7 @@ static int __guc_context_pin(struct intel_context *ce, /* * GuC context gets pinned in guc_request_alloc. See that function for - * explaination of why. + * explanation of why. */ return lrc_pin(ce, engine, vaddr);