Skip to content

Commit

Permalink
ixgbe: add mac type to the version in ethtool_regs
Browse files Browse the repository at this point in the history
This patch adds the mac type to the version in ethtool_regs.

This will make it easier to check the mac type when dumping registers with
ethtool. The drawback of this is that older versions of ethtool will only
be able to dump in hex format for 82599 and above  when used with the updated
driver.

Signed-off-by: Emil Tantilov <emil.s.tantilov@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
  • Loading branch information
Emil Tantilov authored and Jeff Kirsher committed Apr 26, 2013
1 parent 46d5ced commit c4a56de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,8 @@ static void ixgbe_get_regs(struct net_device *netdev,

memset(p, 0, IXGBE_REGS_LEN * sizeof(u32));

regs->version = (1 << 24) | hw->revision_id << 16 | hw->device_id;
regs->version = hw->mac.type << 24 | hw->revision_id << 16 |
hw->device_id;

/* General Registers */
regs_buff[0] = IXGBE_READ_REG(hw, IXGBE_CTRL);
Expand Down

0 comments on commit c4a56de

Please sign in to comment.