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

Commit 56a7a06a authored by Fabian Frederick's avatar Fabian Frederick Committed by David S. Miller
Browse files

ucc_geth: remove unnecessary break after return

parent f6ec2f32
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -2396,7 +2396,6 @@ static int ucc_geth_startup(struct ucc_geth_private *ugeth)
		if (netif_msg_ifup(ugeth))
		if (netif_msg_ifup(ugeth))
			pr_err("Bad number of Rx threads value\n");
			pr_err("Bad number of Rx threads value\n");
		return -EINVAL;
		return -EINVAL;
		break;
	}
	}


	switch (ug_info->numThreadsTx) {
	switch (ug_info->numThreadsTx) {
@@ -2419,7 +2418,6 @@ static int ucc_geth_startup(struct ucc_geth_private *ugeth)
		if (netif_msg_ifup(ugeth))
		if (netif_msg_ifup(ugeth))
			pr_err("Bad number of Tx threads value\n");
			pr_err("Bad number of Tx threads value\n");
		return -EINVAL;
		return -EINVAL;
		break;
	}
	}


	/* Calculate rx_extended_features */
	/* Calculate rx_extended_features */