summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorstephen hemminger2011-04-05 06:26:27 +0200
committerJeff Kirsher2011-05-04 21:12:22 +0200
commit97322b3303a1de979b973dc1d0a43091f27258ac (patch)
tree5a8e53d12860fa14f15fcb64b4eece067056dadc /drivers
parentigb: Add check for invalid size to igb_get_invariants_82575() (diff)
downloadkernel-qcow2-linux-97322b3303a1de979b973dc1d0a43091f27258ac.tar.gz
kernel-qcow2-linux-97322b3303a1de979b973dc1d0a43091f27258ac.tar.xz
kernel-qcow2-linux-97322b3303a1de979b973dc1d0a43091f27258ac.zip
igbvf: remove bogus phys_id
This device lies about supporting phys_id. Remove it and just let the upper layer report not supported. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Tested-by: <jeffrey.e.pieper@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/net/igbvf/ethtool.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/net/igbvf/ethtool.c b/drivers/net/igbvf/ethtool.c
index 112ae15b2d49..b0b14d63dfbf 100644
--- a/drivers/net/igbvf/ethtool.c
+++ b/drivers/net/igbvf/ethtool.c
@@ -391,11 +391,6 @@ static int igbvf_set_wol(struct net_device *netdev,
return -EOPNOTSUPP;
}
-static int igbvf_phys_id(struct net_device *netdev, u32 data)
-{
- return 0;
-}
-
static int igbvf_get_coalesce(struct net_device *netdev,
struct ethtool_coalesce *ec)
{
@@ -527,7 +522,6 @@ static const struct ethtool_ops igbvf_ethtool_ops = {
.self_test = igbvf_diag_test,
.get_sset_count = igbvf_get_sset_count,
.get_strings = igbvf_get_strings,
- .phys_id = igbvf_phys_id,
.get_ethtool_stats = igbvf_get_ethtool_stats,
.get_coalesce = igbvf_get_coalesce,
.set_coalesce = igbvf_set_coalesce,