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 5FE9FEB64DC for ; Fri, 21 Jul 2023 06:10:40 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 740C810E0D7; Fri, 21 Jul 2023 06:10:39 +0000 (UTC) Received: from mail.208.org (unknown [183.242.55.162]) by gabe.freedesktop.org (Postfix) with ESMTPS id 2A19110E61D for ; Fri, 21 Jul 2023 06:10:35 +0000 (UTC) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R6fLJ3d41zBRDtJ for ; Fri, 21 Jul 2023 14:10:32 +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=1689919832; x=1692511833; bh=AY+u3jgn01B4/kF9DL4Qu4WGk/F PohXQgFq0v8CHJFU=; b=r/gDt3KukI0P0Fe4QmY8Jzjf7BqYwxcU1lM181rpD+l UU2k6h2q2BklYsFkfRXr6JrhMMoOjuUSzsj3f9jXQxUqcJZwNAeoS3kjlGFaBJ/t 8aZMcUhz+YwAEYDl8+8InqnLkciGVv8dK+3TR0vdMEH5vwI/GKa5ccvmJMRylmj5 0G0UtRVf904vwIEK3FkMru0RaWT6S0+4WF9f2JLpvPup6wzLpCCdlL1ajUYPgVFE OiPzu5QS1oPbUq0lLp23ctkTsgxbJxBzI+cbgXZEOkCt9VSTKV4NJk6YpvBczNhd pSUnhyuV5+PdLlAAl14YwrTHGXZU5OKciPWJyMo2+kg== 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 tGRFSxJjEnD7 for ; Fri, 21 Jul 2023 14:10:32 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R6fLJ171XzBJBHk; Fri, 21 Jul 2023 14:10:32 +0800 (CST) MIME-Version: 1.0 Date: Fri, 21 Jul 2023 06:10:32 +0000 From: sunran001@208suo.com To: airlied@gmail.com, daniel@ffwll.ch Subject: [PATCH] drm/radeon: ERROR: "foo * bar" should be "foo *bar" In-Reply-To: <20230721060919.5133-1-xujianghui@cdjrlc.com> References: <20230721060919.5133-1-xujianghui@cdjrlc.com> User-Agent: Roundcube Webmail Message-ID: <696ea9a46762e16d993f8fc4bf26fb7f@208suo.com> 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: dri-devel@lists.freedesktop.org, amd-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Fix nine occurrences of the checkpatch.pl error: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: Ran Sun --- drivers/gpu/drm/radeon/atom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/radeon/atom.c b/drivers/gpu/drm/radeon/atom.c index 11a1940bb26d..93acb0e42bd6 100644 --- a/drivers/gpu/drm/radeon/atom.c +++ b/drivers/gpu/drm/radeon/atom.c @@ -68,8 +68,8 @@ typedef struct { } atom_exec_context; int atom_debug = 0; -static int atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t * params); -int atom_execute_table(struct atom_context *ctx, int index, uint32_t * params); +static int atom_execute_table_locked(struct atom_context *ctx, int index, uint32_t *params); +int atom_execute_table(struct atom_context *ctx, int index, uint32_t *params); static uint32_t atom_arg_mask[8] = { 0xFFFFFFFF, 0x0000FFFF, 0x00FFFF00, 0xFFFF0000,