We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff0387c commit 754834bCopy full SHA for 754834b
drivers/pci/hotplug/ibmphp_res.c
@@ -376,10 +376,7 @@ int __init ibmphp_rsrc_init (void)
376
if (rc)
377
return rc;
378
}
379
- rc = once_over (); /* This is to align ranges (so no -1) */
380
- if (rc)
381
- return rc;
382
- return 0;
+ return once_over (); /* This is to align ranges (so no -1) */
383
384
385
/********************************************************************************
drivers/pci/pci.c
@@ -1012,11 +1012,7 @@ int pci_save_state(struct pci_dev *dev)
1012
if (i != 0)
1013
return i;
1014
1015
- i = pci_save_vc_state(dev);
1016
- if (i != 0)
1017
- return i;
1018
-
1019
+ return pci_save_vc_state(dev);
1020
1021
EXPORT_SYMBOL(pci_save_state);
1022
0 commit comments