From patchwork Wed Jul 12 01:54:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: shijie001@208suo.com X-Patchwork-Id: 13309507 X-Patchwork-Delegate: bhelgaas@google.com 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 A1CD7EB64DC for ; Wed, 12 Jul 2023 01:54:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231359AbjGLBy0 (ORCPT ); Tue, 11 Jul 2023 21:54:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33032 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231272AbjGLByZ (ORCPT ); Tue, 11 Jul 2023 21:54:25 -0400 Received: from mail.208.org (unknown [183.242.55.162]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 13718171E for ; Tue, 11 Jul 2023 18:54:23 -0700 (PDT) Received: from mail.208.org (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTP id 4R114k1DkYzBR5CM for ; Wed, 12 Jul 2023 09:54:14 +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=1689126853; x=1691718854; bh=QDt5V1qbtA8v+foDitLWQlDYCUM 5+ZnoES/3BD6Zv4M=; b=rGtdHWimvmzvqSZzjoBHOwAO71rX2dqnAALOTv8ZTH6 nrGAMp9pil1LMsf3yPCpWfjkBGBmEa4krl1Ney7PkPb30Fxktq++/ab6dHJn/vnP nhlbk6V0LBb960wYyyC4zFkLszTO2FsL/xeCQsZqqGrXW3F0dbuLLIcCkxfkEWvb fN0QhO1pyt1JI0NUZybCgbDz76kitLuQmrACGC2mJf+nyb1o4LA5xLm1Jf5WJ8Zh AHEcxFAEvvypM5Wyu4IWROXdtV14OfOitLV7QHmTG45isEQ2NJyNu0afER0mCzZB JwU4nx+CsHkNcJkCslRP6fqu7sX/+sZkrmrU31CuLTQ== 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 0zeH_8OmV82I for ; Wed, 12 Jul 2023 09:54:13 +0800 (CST) Received: from localhost (email.208.org [127.0.0.1]) by mail.208.org (Postfix) with ESMTPSA id 4R114j3LdHzBHXhY; Wed, 12 Jul 2023 09:54:13 +0800 (CST) MIME-Version: 1.0 Date: Wed, 12 Jul 2023 09:54:13 +0800 From: shijie001@208suo.com To: tglx@linutronix.de, mingo@redhat.com, bp@alien8.de, dave.hansen@linux.intel.com Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org, hpa@zytor.com Subject: [PATCH] x86/pci:Fix errors in ce4100.c In-Reply-To: References: User-Agent: Roundcube Webmail Message-ID: X-Sender: shijie001@208suo.com Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org The following checkpatch errors are removed: ERROR: space prohibited before that ',' (ctx:WxW) Signed-off-by: Jie Shi --- arch/x86/pci/ce4100.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/pci/ce4100.c b/arch/x86/pci/ce4100.c index 87313701f069..0ffb6563e429 100644 --- a/arch/x86/pci/ce4100.c +++ b/arch/x86/pci/ce4100.c @@ -113,7 +113,7 @@ static struct sim_dev_reg bus1_fixups[] = { DEFINE_REG(8, 0, 0x10, (1*MB), reg_init, reg_read, reg_write) DEFINE_REG(8, 1, 0x10, (64*KB), reg_init, reg_read, reg_write) DEFINE_REG(8, 2, 0x10, (64*KB), reg_init, reg_read, reg_write) - DEFINE_REG(9, 0, 0x10 , (1*MB), reg_init, reg_read, reg_write) + DEFINE_REG(9, 0, 0x10, (1*MB), reg_init, reg_read, reg_write) DEFINE_REG(9, 0, 0x14, (64*KB), reg_init, reg_read, reg_write) DEFINE_REG(10, 0, 0x10, (256), reg_init, reg_read, reg_write) DEFINE_REG(10, 0, 0x14, (256*MB), reg_init, reg_read, reg_write)