diff options
author | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-29 13:03:29 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-29 13:03:29 -0500 |
commit | 007fb598b4674de82492a9961e82826875012229 (patch) | |
tree | b72b84b6fb54d02f6021d8a9e16e143debdf45b9 /drivers/net/netxen/netxen_nic_ethtool.c | |
parent | 7658cc289288b8ae7dd2c2224549a048431222b3 (diff) | |
parent | 92104e94806f47e090e3bb40f6ae45f695351a5e (diff) |
Merge branch 'netxen-ioctl' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6
* 'netxen-ioctl' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6:
netxen: remove private ioctl
Diffstat (limited to 'drivers/net/netxen/netxen_nic_ethtool.c')
-rw-r--r-- | drivers/net/netxen/netxen_nic_ethtool.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/netxen/netxen_nic_ethtool.c b/drivers/net/netxen/netxen_nic_ethtool.c index 2ab4885cc950..34044616b3c8 100644 --- a/drivers/net/netxen/netxen_nic_ethtool.c +++ b/drivers/net/netxen/netxen_nic_ethtool.c | |||
@@ -42,7 +42,6 @@ | |||
42 | #include "netxen_nic_hw.h" | 42 | #include "netxen_nic_hw.h" |
43 | #include "netxen_nic.h" | 43 | #include "netxen_nic.h" |
44 | #include "netxen_nic_phan_reg.h" | 44 | #include "netxen_nic_phan_reg.h" |
45 | #include "netxen_nic_ioctl.h" | ||
46 | 45 | ||
47 | struct netxen_nic_stats { | 46 | struct netxen_nic_stats { |
48 | char stat_string[ETH_GSTRING_LEN]; | 47 | char stat_string[ETH_GSTRING_LEN]; |
@@ -79,8 +78,7 @@ static const struct netxen_nic_stats netxen_nic_gstrings_stats[] = { | |||
79 | {"tx_bytes", NETXEN_NIC_STAT(stats.txbytes)}, | 78 | {"tx_bytes", NETXEN_NIC_STAT(stats.txbytes)}, |
80 | }; | 79 | }; |
81 | 80 | ||
82 | #define NETXEN_NIC_STATS_LEN \ | 81 | #define NETXEN_NIC_STATS_LEN ARRAY_SIZE(netxen_nic_gstrings_stats) |
83 | sizeof(netxen_nic_gstrings_stats) / sizeof(struct netxen_nic_stats) | ||
84 | 82 | ||
85 | static const char netxen_nic_gstrings_test[][ETH_GSTRING_LEN] = { | 83 | static const char netxen_nic_gstrings_test[][ETH_GSTRING_LEN] = { |
86 | "Register_Test_offline", "EEPROM_Test_offline", | 84 | "Register_Test_offline", "EEPROM_Test_offline", |
@@ -711,7 +709,6 @@ netxen_nic_get_ethtool_stats(struct net_device *dev, | |||
711 | (netxen_nic_gstrings_stats[index].sizeof_stat == | 709 | (netxen_nic_gstrings_stats[index].sizeof_stat == |
712 | sizeof(u64)) ? *(u64 *) p : *(u32 *) p; | 710 | sizeof(u64)) ? *(u64 *) p : *(u32 *) p; |
713 | } | 711 | } |
714 | |||
715 | } | 712 | } |
716 | 713 | ||
717 | struct ethtool_ops netxen_nic_ethtool_ops = { | 714 | struct ethtool_ops netxen_nic_ethtool_ops = { |