From mboxrd@z Thu Jan 1 00:00:00 1970 From: Myron Stowe Subject: [PATCH 02/15] PCI/acpiphp: Fix coding style of external declarations in acpiphp.h Date: Thu, 06 Dec 2012 23:25:06 -0700 Message-ID: <20121207062505.11051.63536.stgit@amt.stowe> References: <20121207062454.11051.12739.stgit@amt.stowe> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20121207062454.11051.12739.stgit@amt.stowe> Sender: linux-kernel-owner@vger.kernel.org To: bhelgaas@google.com Cc: linux-pci@vger.kernel.org, yinghai@kernel.org, linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org List-Id: linux-acpi@vger.kernel.org The external declarations trigger warnings from ./scripts/checkpatch.pl such as: WARNING: space prohibited between function name and open parenthesis '(' #32: FILE: drivers/pci/hotplug/acpiphp.h:194: +extern void acpiphp_glue_init (void); This patch removes the extraneous spaces between the function names and open parenthesis '('. No functional change. Signed-off-by: Myron Stowe --- drivers/pci/hotplug/acpiphp.h | 20 ++++++++++---------- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/pci/hotplug/acpiphp.h b/drivers/pci/hotplug/acpiphp.h index a1afb5b..014ae78 100644 --- a/drivers/pci/hotplug/acpiphp.h +++ b/drivers/pci/hotplug/acpiphp.h @@ -191,18 +191,18 @@ extern int acpiphp_register_hotplug_slot(struct acpiphp_slot *slot); extern void acpiphp_unregister_hotplug_slot(struct acpiphp_slot *slot); /* acpiphp_glue.c */ -extern int acpiphp_glue_init (void); -extern void acpiphp_glue_exit (void); -extern int acpiphp_get_num_slots (void); +extern int acpiphp_glue_init(void); +extern void acpiphp_glue_exit(void); +extern int acpiphp_get_num_slots(void); typedef int (*acpiphp_callback)(struct acpiphp_slot *slot, void *data); -extern int acpiphp_enable_slot (struct acpiphp_slot *slot); -extern int acpiphp_disable_slot (struct acpiphp_slot *slot); -extern int acpiphp_eject_slot (struct acpiphp_slot *slot); -extern u8 acpiphp_get_power_status (struct acpiphp_slot *slot); -extern u8 acpiphp_get_attention_status (struct acpiphp_slot *slot); -extern u8 acpiphp_get_latch_status (struct acpiphp_slot *slot); -extern u8 acpiphp_get_adapter_status (struct acpiphp_slot *slot); +extern int acpiphp_enable_slot(struct acpiphp_slot *slot); +extern int acpiphp_disable_slot(struct acpiphp_slot *slot); +extern int acpiphp_eject_slot(struct acpiphp_slot *slot); +extern u8 acpiphp_get_power_status(struct acpiphp_slot *slot); +extern u8 acpiphp_get_attention_status(struct acpiphp_slot *slot); +extern u8 acpiphp_get_latch_status(struct acpiphp_slot *slot); +extern u8 acpiphp_get_adapter_status(struct acpiphp_slot *slot); /* variables */ extern bool acpiphp_debug;