diff options
author | Matthew Wilcox <matthew@wil.cx> | 2007-08-01 01:00:29 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-08-01 01:00:29 +0400 |
commit | 313674afa8fdced2fe79f50f38e1c387b63d8790 (patch) | |
tree | 40b14cab2f48af45615dacf35c93a268c42b7f9a /drivers/net/qla3xxx.c | |
parent | 61a44b9c4b20d40c41fd1b70a4ceb13b75ea79a4 (diff) | |
download | linux-313674afa8fdced2fe79f50f38e1c387b63d8790.tar.xz |
[NET]: ethtool_perm_addr only has one implementation
All drivers implement ethtool get_perm_addr the same way -- by calling
the generic function. So we can inline the generic function into the
caller and avoid going through the drivers.
Signed-off-by: Matthew Wilcox <matthew@wil.cx>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/qla3xxx.c')
-rwxr-xr-x | drivers/net/qla3xxx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/qla3xxx.c b/drivers/net/qla3xxx.c index 8be8be451ada..69da95b5ad0c 100755 --- a/drivers/net/qla3xxx.c +++ b/drivers/net/qla3xxx.c @@ -1904,7 +1904,6 @@ static void ql_get_pauseparam(struct net_device *ndev, static const struct ethtool_ops ql3xxx_ethtool_ops = { .get_settings = ql_get_settings, .get_drvinfo = ql_get_drvinfo, - .get_perm_addr = ethtool_op_get_perm_addr, .get_link = ethtool_op_get_link, .get_msglevel = ql_get_msglevel, .set_msglevel = ql_set_msglevel, |