Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 757b816e authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman
Browse files

staging: dgnc: remove unneeded else



If pci_enable_device() fails then we can return directly.

Signed-off-by: default avatarSudip Mukherjee <sudip.mukherjee@codethink.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8d0d4cc5
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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 {
	if (rc)
		return -EIO;

	rc = dgnc_found_board(pdev, ent->driver_data);
	if (rc == 0)
		dgnc_NumBoards++;
	}

	return rc;
}