提交 abf9b902 编写于 作者: A Auke Kok 提交者: Jeff Garzik

e100: cleanup unneeded math

No need to convert to bytes and back - cleanup unneeded code.

Adapted from fix from 'Roel Kluin <12o3l@tiscali.nl>'
Signed-off-by: NAuke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: NJeff Garzik <jeff@garzik.org>
上级 c32bc6e9
...@@ -2214,13 +2214,11 @@ static void e100_get_drvinfo(struct net_device *netdev, ...@@ -2214,13 +2214,11 @@ static void e100_get_drvinfo(struct net_device *netdev,
strcpy(info->bus_info, pci_name(nic->pdev)); strcpy(info->bus_info, pci_name(nic->pdev));
} }
#define E100_PHY_REGS 0x1C
static int e100_get_regs_len(struct net_device *netdev) static int e100_get_regs_len(struct net_device *netdev)
{ {
struct nic *nic = netdev_priv(netdev); struct nic *nic = netdev_priv(netdev);
#define E100_PHY_REGS 0x1C return 1 + E100_PHY_REGS + sizeof(nic->mem->dump_buf);
#define E100_REGS_LEN 1 + E100_PHY_REGS + \
sizeof(nic->mem->dump_buf) / sizeof(u32)
return E100_REGS_LEN * sizeof(u32);
} }
static void e100_get_regs(struct net_device *netdev, static void e100_get_regs(struct net_device *netdev,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册