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

Commit 4c5386ba authored by Luis de Bethencourt's avatar Luis de Bethencourt Committed by David S. Miller
Browse files

net/mlx5e: Fix trailing semicolon



The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: default avatarLuis de Bethencourt <luisbg@kernel.org>
Reviewed-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d680b352
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -485,7 +485,7 @@ static int mlx5i_close(struct net_device *netdev)
	mlx5_fs_remove_rx_underlay_qpn(mdev, ipriv->qp.qpn);
	mlx5i_uninit_underlay_qp(epriv);
	mlx5e_deactivate_priv_channels(epriv);
	mlx5e_close_channels(&epriv->channels);;
	mlx5e_close_channels(&epriv->channels);
unlock:
	mutex_unlock(&epriv->state_lock);
	return 0;