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

Commit 80928860 authored by Ron Mercer's avatar Ron Mercer Committed by David S. Miller
Browse files

qlge: Don't fail open when port is not initialized.

parent fda9b77c
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -3311,10 +3311,8 @@ static int ql_adapter_initialize(struct ql_adapter *qdev)

	/* Initialize the port and set the max framesize. */
	status = qdev->nic_ops->port_initialize(qdev);
       if (status) {
	if (status)
		QPRINTK(qdev, IFUP, ERR, "Failed to start port.\n");
              return status;
       }

	/* Set up the MAC address and frame routing filter. */
	status = ql_cam_route_initialize(qdev);