diff options
author | Quentin Lambert <lambert.quentin@gmail.com> | 2014-11-06 19:45:55 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-11-11 07:08:07 +0300 |
commit | 754834b9caae8d1380f66a5f0337547e9361094d (patch) | |
tree | 86bc1a50ca3a0a72bd59125b36db4e76d347fe33 /drivers/pci/hotplug/ibmphp_res.c | |
parent | ff0387c3777f2438bad2088abe442c9f231b0be4 (diff) | |
download | linux-754834b9caae8d1380f66a5f0337547e9361094d.tar.xz |
PCI: Simplify if-return sequences
Simplify a trivial if-return sequence. Possibly combine with a preceding
function call.
Generated by: scripts/coccinelle/misc/simple_return.cocci
Signed-off-by: Quentin Lambert <lambert.quentin@gmail.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/hotplug/ibmphp_res.c')
-rw-r--r-- | drivers/pci/hotplug/ibmphp_res.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/pci/hotplug/ibmphp_res.c b/drivers/pci/hotplug/ibmphp_res.c index 219ba8090a37..f279060cf6e2 100644 --- a/drivers/pci/hotplug/ibmphp_res.c +++ b/drivers/pci/hotplug/ibmphp_res.c @@ -376,10 +376,7 @@ int __init ibmphp_rsrc_init (void) if (rc) return rc; } - rc = once_over (); /* This is to align ranges (so no -1) */ - if (rc) - return rc; - return 0; + return once_over (); /* This is to align ranges (so no -1) */ } /******************************************************************************** |