diff options
author | Kamal Heib <kamalh@mellanox.com> | 2016-09-20 14:39:40 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-09-21 21:52:43 -0400 |
commit | 57c970c2e8d8772237294bb8a6a25a205448fd96 (patch) | |
tree | 563805554da457e3dd0a32a882fe75cca9b8eb3f | |
parent | de3d6fa81e684af5817dc379ffc394235a9666cc (diff) |
net/mlx4_en: Fix wrong indentation
Use tabs instead of spaces before if statement, no functional change.
Fixes: e7c1c2c46201 ("mlx4_en: Added self diagnostics test implementation")
Signed-off-by: Kamal Heib <kamalh@mellanox.com>
Signed-off-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx4/en_rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx4/en_rx.c b/drivers/net/ethernet/mellanox/mlx4/en_rx.c index 6e474af3fb1f..f2e8beddcf44 100644 --- a/drivers/net/ethernet/mellanox/mlx4/en_rx.c +++ b/drivers/net/ethernet/mellanox/mlx4/en_rx.c @@ -1023,7 +1023,7 @@ xdp_drop: goto next; } - if (unlikely(priv->validate_loopback)) { + if (unlikely(priv->validate_loopback)) { validate_loopback(priv, skb); goto next; } |