Skip to content

Commit

Permalink
PCI: rpaphp: Remove un-needed goto
Browse files Browse the repository at this point in the history
Remove un-needed goto.

Signed-off-by: Linas Vepstas <linas@austin.ibm.com>
Cc: John Rose <johnrose@austin.ibm.com>
Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Linas Vepstas authored and Greg Kroah-Hartman committed May 3, 2007
1 parent 5fd39c3 commit 3499f07
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/pci/hotplug/rpaphp_slot.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,13 @@ int rpaphp_register_slot(struct slot *slot)
/* should not try to register the same slot twice */
if (is_registered(slot)) {
err("rpaphp_register_slot: slot[%s] is already registered\n", slot->name);
retval = -EAGAIN;
goto register_fail;
return -EAGAIN;
}

retval = pci_hp_register(php_slot);
if (retval) {
err("pci_hp_register failed with error %d\n", retval);
goto register_fail;
return retval;
}

/* create "phy_location" file */
Expand All @@ -182,7 +181,6 @@ int rpaphp_register_slot(struct slot *slot)

sysfs_fail:
pci_hp_deregister(php_slot);
register_fail:
return retval;
}

Expand Down

0 comments on commit 3499f07

Please sign in to comment.