diff options
author | Eli Cohen <eli@mellanox.com> | 2015-09-25 09:49:15 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-09-29 07:19:50 +0200 |
commit | 78ccb25861d76a8fc5c678d762180e6918834200 (patch) | |
tree | 39cedf2c42f8318645555bcd7795937648816b40 /drivers/net | |
parent | net/mlx5_core: New init and exit flow for mlx5_core (diff) | |
download | linux-78ccb25861d76a8fc5c678d762180e6918834200.tar.xz linux-78ccb25861d76a8fc5c678d762180e6918834200.zip |
net/mlx5_core: Fix wrong name in struct
The name refers to syndrome so uset ext_synd instread of ext_sync.
Signed-off-by: Eli Cohen <eli@mellanox.com>
Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/mellanox/mlx5/core/health.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/health.c b/drivers/net/ethernet/mellanox/mlx5/core/health.c index 292d76f2a904..6e69de00cea8 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/health.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/health.c @@ -130,7 +130,7 @@ static void print_health_info(struct mlx5_core_dev *dev) pr_info("hw_id 0x%08x\n", read_be32(&h->hw_id)); pr_info("irisc_index %d\n", readb(&h->irisc_index)); pr_info("synd 0x%x: %s\n", readb(&h->synd), hsynd_str(readb(&h->synd))); - pr_info("ext_sync 0x%04x\n", read_be16(&h->ext_sync)); + pr_info("ext_sync 0x%04x\n", read_be16(&h->ext_synd)); } static void poll_health(unsigned long data) |