From nobody Thu Sep 18 01:15:58 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 CD307C4332F for ; Tue, 13 Dec 2022 09:52:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234376AbiLMJwn (ORCPT ); Tue, 13 Dec 2022 04:52:43 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42476 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235104AbiLMJw1 (ORCPT ); Tue, 13 Dec 2022 04:52:27 -0500 Received: from out30-45.freemail.mail.aliyun.com (out30-45.freemail.mail.aliyun.com [115.124.30.45]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E9A681CB3C for ; Tue, 13 Dec 2022 01:52:18 -0800 (PST) X-Alimail-AntiSpam: AC=PASS;BC=-1|-1;BR=01201311R881e4;CH=green;DM=||false|;DS=||;FP=0|-1|-1|-1|0|-1|-1|-1;HT=ay29a033018045192;MF=jiapeng.chong@linux.alibaba.com;NM=0;PH=DS;RN=11;SR=0;TI=SMTPD_---0VXDgPPb_1670925129; Received: from localhost(mailfrom:jiapeng.chong@linux.alibaba.com fp:SMTPD_---0VXDgPPb_1670925129) by smtp.aliyun-inc.com; Tue, 13 Dec 2022 17:52:15 +0800 From: Jiapeng Chong To: jani.nikula@linux.intel.com Cc: joonas.lahtinen@linux.intel.com, rodrigo.vivi@intel.com, tvrtko.ursulin@linux.intel.com, airlied@gmail.com, daniel@ffwll.ch, intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Jiapeng Chong , Abaci Robot Subject: [PATCH] drm/i915/gt: Modify mismatched function name Date: Tue, 13 Dec 2022 17:51:45 +0800 Message-Id: <20221213095145.1899-1-jiapeng.chong@linux.alibaba.com> X-Mailer: git-send-email 2.20.1.7.g153144c 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" No functional modification involved. drivers/gpu/drm/i915/gt/intel_engine_cs.c:1306: warning: expecting prototyp= e for intel_engines_init_common(). Prototype was for engine_init_common() i= nstead. Link: https://bugzilla.openanolis.cn/show_bug.cgi?id=3D3442 Reported-by: Abaci Robot Signed-off-by: Jiapeng Chong Reviewed-by: Tejas Upadhyay --- drivers/gpu/drm/i915/gt/intel_engine_cs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/drivers/gpu/drm/i9= 15/gt/intel_engine_cs.c index c33e0d72d670..dfcd3a91fbe7 100644 --- a/drivers/gpu/drm/i915/gt/intel_engine_cs.c +++ b/drivers/gpu/drm/i915/gt/intel_engine_cs.c @@ -1292,7 +1292,7 @@ create_kernel_context(struct intel_engine_cs *engine) } =20 /** - * intel_engines_init_common - initialize cengine state which might requir= e hw access + * engine_init_common - initialize cengine state which might require hw ac= cess * @engine: Engine to initialize. * * Initializes @engine@ structure members shared between legacy and execli= sts --=20 2.20.1.7.g153144c