diff options
author | Alex Chiang <achiang@hp.com> | 2007-10-13 01:20:32 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-02-02 00:04:20 +0100 |
commit | 41ece3829f516f0e1f0c25f2c7eafac87e683df4 (patch) | |
tree | 30a9ba66f9fb26ac2b3baca23551199512373ee9 /drivers/pci/hotplug | |
parent | PCI: hotplug: acpiphp: Remove unused variable from acpiphp (diff) | |
download | linux-41ece3829f516f0e1f0c25f2c7eafac87e683df4.tar.xz linux-41ece3829f516f0e1f0c25f2c7eafac87e683df4.zip |
PCI: hotplug: pci_hotplug_core whitespace fix
Remove superfluous space.
Signed-off-by: Alex Chiang <achiang@hp.com>
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/hotplug')
-rw-r--r-- | drivers/pci/hotplug/pci_hotplug_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c index 47bb0e1ff3fa..1767780809d7 100644 --- a/drivers/pci/hotplug/pci_hotplug_core.c +++ b/drivers/pci/hotplug/pci_hotplug_core.c @@ -137,7 +137,7 @@ static int get_##name (struct hotplug_slot *slot, type *value) \ int retval = 0; \ if (try_module_get(ops->owner)) { \ if (ops->get_##name) \ - retval = ops->get_##name (slot, value); \ + retval = ops->get_##name(slot, value); \ else \ *value = slot->info->name; \ module_put(ops->owner); \ |