aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/net/ethernet/mellanox/mlx4/fw.c
diff options
context:
space:
mode:
authorAmir Vadai <amirv@mellanox.com>2015-07-28 13:19:19 +0300
committerDavid S. Miller <davem@davemloft.net>2015-07-29 12:21:56 -0700
commit35e455f47ac2e7fbc0c25871a4e91c563ff78ce1 (patch)
tree41c899ef42548414df2ed0e39335ef68c85bc91b /drivers/net/ethernet/mellanox/mlx4/fw.c
parentMerge branch 'stmmac-cleanup' (diff)
downloadwireguard-linux-35e455f47ac2e7fbc0c25871a4e91c563ff78ce1.tar.xz
wireguard-linux-35e455f47ac2e7fbc0c25871a4e91c563ff78ce1.zip
net/mlx4_en: Hardware accelerated 802.1ad works only on the first port
Fix mistakenly used, hard coded, port number in get_phv_bit() Fixes: 77fc29c ("net/mlx4_core: Preparations for 802.1ad VLAN support") Signed-off-by: Amir Vadai <amirv@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/mellanox/mlx4/fw.c')
-rw-r--r--drivers/net/ethernet/mellanox/mlx4/fw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx4/fw.c b/drivers/net/ethernet/mellanox/mlx4/fw.c
index 5a1c3d249530..e8ec1dec5789 100644
--- a/drivers/net/ethernet/mellanox/mlx4/fw.c
+++ b/drivers/net/ethernet/mellanox/mlx4/fw.c
@@ -2815,7 +2815,7 @@ int get_phv_bit(struct mlx4_dev *dev, u8 port, int *phv)
struct mlx4_func_cap func_cap;
memset(&func_cap, 0, sizeof(func_cap));
- err = mlx4_QUERY_FUNC_CAP(dev, 1, &func_cap);
+ err = mlx4_QUERY_FUNC_CAP(dev, port, &func_cap);
if (!err)
*phv = func_cap.flags & QUERY_FUNC_CAP_PHV_BIT;
return err;