forked from luck/tmp_suning_uos_patched
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: Auke Kok <auke-jan.h.kok@intel.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
c32bc6e9b0
commit
abf9b90205
|
@ -2214,13 +2214,11 @@ static void e100_get_drvinfo(struct net_device *netdev,
|
|||
strcpy(info->bus_info, pci_name(nic->pdev));
|
||||
}
|
||||
|
||||
#define E100_PHY_REGS 0x1C
|
||||
static int e100_get_regs_len(struct net_device *netdev)
|
||||
{
|
||||
struct nic *nic = netdev_priv(netdev);
|
||||
#define E100_PHY_REGS 0x1C
|
||||
#define E100_REGS_LEN 1 + E100_PHY_REGS + \
|
||||
sizeof(nic->mem->dump_buf) / sizeof(u32)
|
||||
return E100_REGS_LEN * sizeof(u32);
|
||||
return 1 + E100_PHY_REGS + sizeof(nic->mem->dump_buf);
|
||||
}
|
||||
|
||||
static void e100_get_regs(struct net_device *netdev,
|
||||
|
|
Loading…
Reference in New Issue
Block a user