aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/hotplug/pci_hotplug_core.c
diff options
context:
space:
mode:
authorKenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>2008-06-20 11:54:06 +0900
committerJesse Barnes <jbarnes@virtuousgeek.org>2008-06-25 15:58:39 -0700
commitb86ec7ed2877f560ff069e8ed1b433a9005619c6 (patch)
treed41871cf17299d3568001ec61865f973042c1320 /drivers/pci/hotplug/pci_hotplug_core.c
parentpciehp: remove inline from command related functions (diff)
downloadlinux-dev-b86ec7ed2877f560ff069e8ed1b433a9005619c6.tar.xz
linux-dev-b86ec7ed2877f560ff069e8ed1b433a9005619c6.zip
Remove unnecessary 'tmp' variable from pci_hp_register().
Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/hotplug/pci_hotplug_core.c')
-rw-r--r--drivers/pci/hotplug/pci_hotplug_core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/pci/hotplug/pci_hotplug_core.c b/drivers/pci/hotplug/pci_hotplug_core.c
index b514162125fb..5f85b1b120e3 100644
--- a/drivers/pci/hotplug/pci_hotplug_core.c
+++ b/drivers/pci/hotplug/pci_hotplug_core.c
@@ -557,7 +557,6 @@ int pci_hp_register(struct hotplug_slot *slot, struct pci_bus *bus, int slot_nr)
{
int result;
struct pci_slot *pci_slot;
- struct hotplug_slot *tmp;
if (slot == NULL)
return -ENODEV;
@@ -570,8 +569,7 @@ int pci_hp_register(struct hotplug_slot *slot, struct pci_bus *bus, int slot_nr)
}
/* Check if we have already registered a slot with the same name. */
- tmp = get_slot_from_name(slot->name);
- if (tmp)
+ if (get_slot_from_name(slot->name))
return -EEXIST;
/*