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 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 8EC3BC0015E for ; Tue, 11 Jul 2023 06:13:02 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id EC6AC10E30F; Tue, 11 Jul 2023 06:13:01 +0000 (UTC) Received: from mail.208.org (unknown [183.242.55.162]) by gabe.freedesktop.org (Postfix) with ESMTPS id 48E1410E30E for ; Tue, 11 Jul 2023 06:12:58 +0000 (UTC) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R0Vsh19KtzBHXhc for ; Tue, 11 Jul 2023 14:12:56 +0800 (CST) Authentication-Results: mail.208.org (amavisd-new); dkim=pass reason="pass (just generated, assumed good)" header.d=208.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=208.org; h= content-transfer-encoding:content-type:message-id:user-agent :references:in-reply-to:subject:to:from:date:mime-version; s= dkim; t=1689055976; x=1691647977; bh=HCeXK205aAUdPIW4pevCl7+pDB+ fom36VtNou9SjZP8=; b=RFMbuN93EVxVTzVy7M3lx0dda62X4rnGOvM2p9m3Xzu 6VpJ0vBbm3nO04DX2ryGqet9F3Ws8+TCnl2cPqTUmyJTJtUnt8zW3b7BHnZveCII HOFtSjNiaT7TnetmlPXWIZgi8GGvtyhtnNaePx9cwzA3tCDk6VAR7pSvFMOF1mt5 T2PDkdBQT7tTWmR7NlH9Uk+waBsMwK03WJe/9nV30PEfN9aUKqflqc8OsOMpYvpL ImFaWzAjOUli8OIcYlLCkKS4HOMNWBdFAxdsBE4Yg2f6BTYKM0Xmu7GZgDvJbB3g +i9lU9z8GFOohaVuPwj2lTj2Iom6+IMtC16jINKQ+4A== X-Virus-Scanned: amavisd-new at mail.208.org Received: from mail.208.org ([127.0.0.1]) by mail.208.org (mail.208.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id Heif2i6oabuW for ; Tue, 11 Jul 2023 14:12:56 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R0Vsg6BVwzBHXgj; Tue, 11 Jul 2023 14:12:55 +0800 (CST) MIME-Version: 1.0 Date: Tue, 11 Jul 2023 14:12:55 +0800 From: sunran001@208suo.com To: airlied@gmail.com, daniel@ffwll.ch Subject: [PATCH] drm/nouveau: ERROR: (foo*) should be (foo *) In-Reply-To: <20230711061131.79666-1-xujianghui@cdjrlc.com> References: <20230711061131.79666-1-xujianghui@cdjrlc.com> User-Agent: Roundcube Webmail Message-ID: X-Sender: sunran001@208suo.com Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit 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: , Cc: nouveau@lists.freedesktop.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Fix two occurrences of the checkpatch.pl error: ERROR: (foo*) should be (foo *) Signed-off-by: Ran Sun --- drivers/gpu/drm/nouveau/nouveau_fence.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_fence.c b/drivers/gpu/drm/nouveau/nouveau_fence.c index ee5e9d40c166..287885a3a37e 100644 --- a/drivers/gpu/drm/nouveau/nouveau_fence.c +++ b/drivers/gpu/drm/nouveau/nouveau_fence.c @@ -169,7 +169,7 @@ nouveau_fence_wait_uevent_handler(struct nvif_event *event, void *repv, u32 repc void nouveau_fence_context_new(struct nouveau_channel *chan, struct nouveau_fence_chan *fctx) { - struct nouveau_fence_priv *priv = (void*)chan->drm->fence; + struct nouveau_fence_priv *priv = (void *)chan->drm->fence; struct nouveau_cli *cli = (void *)chan->user.client; struct { struct nvif_event_v0 base; @@ -207,7 +207,7 @@ int nouveau_fence_emit(struct nouveau_fence *fence, struct nouveau_channel *chan) { struct nouveau_fence_chan *fctx = chan->fence; - struct nouveau_fence_priv *priv = (void*)chan->drm->fence; + struct nouveau_fence_priv *priv = (void *)chan->drm->fence; int ret; fence->channel = chan;