net/mlx5e: Fix trailing semicolon
authorLuis de Bethencourt <luisbg@kernel.org>
Wed, 17 Jan 2018 12:09:15 +0000 (12:09 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 18 Jan 2018 21:22:11 +0000 (16:22 -0500)
The trailing semicolon is an empty statement that does no operation.
Removing it since it doesn't do anything.

Signed-off-by: Luis de Bethencourt <luisbg@kernel.org>
Reviewed-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx5/core/ipoib/ipoib.c

index ef1e787..2743525 100644 (file)
@@ -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;