staging: dgnc: remove unneeded else
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Sat, 27 Feb 2016 12:03:32 +0000 (17:33 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Mar 2016 06:09:09 +0000 (22:09 -0800)
If pci_enable_device() fails then we can return directly.

Signed-off-by: Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/dgnc/dgnc_driver.c

index fc6d298..c32f208 100644 (file)
@@ -283,13 +283,13 @@ static int dgnc_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
        /* wake up and enable device */
        rc = pci_enable_device(pdev);
 
-       if (rc < 0) {
-               rc = -EIO;
-       } else {
-               rc = dgnc_found_board(pdev, ent->driver_data);
-               if (rc == 0)
-                       dgnc_NumBoards++;
-       }
+       if (rc)
+               return -EIO;
+
+       rc = dgnc_found_board(pdev, ent->driver_data);
+       if (rc == 0)
+               dgnc_NumBoards++;
+
        return rc;
 }