summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/netvsc_drv.c
diff options
context:
space:
mode:
authorMichał Mirosław2011-04-19 12:43:20 +0200
committerGreg Kroah-Hartman2011-04-20 22:43:16 +0200
commit877a344b28b51b695d6baaeecb15d0eb6c90daef (patch)
tree7adc3252037123414ecccabb31a2e0bea653718d /drivers/staging/hv/netvsc_drv.c
parenthv: make vmbus_loglevel writeable (diff)
downloadkernel-qcow2-linux-877a344b28b51b695d6baaeecb15d0eb6c90daef.tar.gz
kernel-qcow2-linux-877a344b28b51b695d6baaeecb15d0eb6c90daef.tar.xz
kernel-qcow2-linux-877a344b28b51b695d6baaeecb15d0eb6c90daef.zip
Staging: convert hv network driver to hw_features
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/netvsc_drv.c')
-rw-r--r--drivers/staging/hv/netvsc_drv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/hv/netvsc_drv.c b/drivers/staging/hv/netvsc_drv.c
index 258233d0d5de..096a7323cea7 100644
--- a/drivers/staging/hv/netvsc_drv.c
+++ b/drivers/staging/hv/netvsc_drv.c
@@ -309,8 +309,6 @@ static void netvsc_get_drvinfo(struct net_device *net,
static const struct ethtool_ops ethtool_ops = {
.get_drvinfo = netvsc_get_drvinfo,
- .get_sg = ethtool_op_get_sg,
- .set_sg = ethtool_op_set_sg,
.get_link = ethtool_op_get_link,
};
@@ -397,6 +395,7 @@ static int netvsc_probe(struct device *device)
net->netdev_ops = &device_ops;
/* TODO: Add GSO and Checksum offload */
+ net->hw_features = NETIF_F_SG;
net->features = NETIF_F_SG;
SET_ETHTOOL_OPS(net, &ethtool_ops);