From patchwork Tue Oct 11 17:24:40 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Palminha X-Patchwork-Id: 680834 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3stkTC6Mk5z9ryQ for ; Wed, 12 Oct 2016 04:27:27 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754181AbcJKR1Q (ORCPT ); Tue, 11 Oct 2016 13:27:16 -0400 Received: from us01smtprelay-2.synopsys.com ([198.182.47.9]:38190 "EHLO smtprelay.synopsys.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754178AbcJKR1O (ORCPT ); Tue, 11 Oct 2016 13:27:14 -0400 Received: from dc8secmta2.synopsys.com (dc8secmta2.synopsys.com [10.13.218.202]) by smtprelay.synopsys.com (Postfix) with ESMTP id 88F5D24E1227; Tue, 11 Oct 2016 10:27:02 -0700 (PDT) Received: from dc8secmta2.internal.synopsys.com (dc8secmta2.internal.synopsys.com [127.0.0.1]) by dc8secmta2.internal.synopsys.com (Service) with ESMTP id 7BD58A4102; Tue, 11 Oct 2016 10:27:02 -0700 (PDT) Received: from mailhost.synopsys.com (unknown [10.13.184.66]) by dc8secmta2.internal.synopsys.com (Service) with ESMTP id 507FDA4112; Tue, 11 Oct 2016 10:27:02 -0700 (PDT) Received: from mailhost.synopsys.com (localhost [127.0.0.1]) by mailhost.synopsys.com (Postfix) with ESMTP id 3AD07944; Tue, 11 Oct 2016 10:27:02 -0700 (PDT) Received: from US01WXQAHTC1.internal.synopsys.com (us01wxqahtc1.internal.synopsys.com [10.12.238.230]) by mailhost.synopsys.com (Postfix) with ESMTP id 2840593C; Tue, 11 Oct 2016 10:27:02 -0700 (PDT) Received: from DE02WEHTCB.internal.synopsys.com (10.225.19.94) by US01WXQAHTC1.internal.synopsys.com (10.12.238.230) with Microsoft SMTP Server (TLS) id 14.3.266.1; Tue, 11 Oct 2016 10:25:07 -0700 Received: from DE02WEHTCA.internal.synopsys.com (10.225.19.92) by DE02WEHTCB.internal.synopsys.com (10.225.19.94) with Microsoft SMTP Server (TLS) id 14.3.266.1; Tue, 11 Oct 2016 19:25:05 +0200 Received: from palminha-vm.internal.synopsys.com (10.107.25.118) by DE02WEHTCA.internal.synopsys.com (10.225.19.80) with Microsoft SMTP Server (TLS) id 14.3.266.1; Tue, 11 Oct 2016 19:25:04 +0200 From: Carlos Palminha To: , CC: , , Subject: [PATCH 4/5] i2c: i2c-piix4: coding style fix - spaces with open parenthesis Date: Tue, 11 Oct 2016 18:24:40 +0100 Message-ID: <20161011172441.7422-5-palminha@synopsys.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20161011172441.7422-1-palminha@synopsys.com> References: <20161011172441.7422-1-palminha@synopsys.com> MIME-Version: 1.0 X-Originating-IP: [10.107.25.118] Sender: linux-i2c-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org Signed-off-by: Carlos Palminha --- drivers/i2c/busses/i2c-piix4.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/i2c/busses/i2c-piix4.c b/drivers/i2c/busses/i2c-piix4.c index 85b1052..5cc460a 100644 --- a/drivers/i2c/busses/i2c-piix4.c +++ b/drivers/i2c/busses/i2c-piix4.c @@ -102,7 +102,7 @@ * PIIX4. DANGEROUS! */ static int force; -module_param (force, int, 0); +module_param(force, int, 0); MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!"); /* @@ -110,7 +110,7 @@ MODULE_PARM_DESC(force, "Forcibly enable the PIIX4. DANGEROUS!"); * the PIIX4 at the given address. VERY DANGEROUS! */ static int force_addr; -module_param (force_addr, int, 0); +module_param(force_addr, int, 0); MODULE_PARM_DESC(force_addr, "Forcibly enable the PIIX4 at the given address. " "EXTREMELY DANGEROUS!"); @@ -204,7 +204,7 @@ static int piix4_setup(struct pci_dev *PIIX4_dev, } else { pci_read_config_word(PIIX4_dev, SMBBA, &piix4_smba); piix4_smba &= 0xfff0; - if(piix4_smba == 0) { + if (piix4_smba == 0) { dev_err(&PIIX4_dev->dev, "SMBus base address " "uninitialized - upgrade BIOS or use " "force_addr=0xaddr\n"); @@ -664,7 +664,7 @@ static const struct pci_device_id piix4_ids[] = { { 0, } }; -MODULE_DEVICE_TABLE (pci, piix4_ids); +MODULE_DEVICE_TABLE(pci, piix4_ids); static struct i2c_adapter *piix4_main_adapters[PIIX4_MAX_ADAPTERS]; static struct i2c_adapter *piix4_aux_adapter;