diff options
author | Michał Mirosław <mirq-linux@rere.qmqm.pl> | 2011-04-01 23:58:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-04-01 23:58:37 -0400 |
commit | e9403c8437cf3721e7901c1a8fcb06bb642a7e55 (patch) | |
tree | ed33b2eab03dc30332b6d1da29ae93e00b0f0d2f | |
parent | a2c725fa39b79fcc3f09151e847cc006ff0d4389 (diff) |
net: convert sunhme/sungem network drivers to hw_features
Side effects:
- TX offloads (HW csum, scatter-gather) can be toggled now
- RX checksum is reported correctly now (it's always active)
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/sungem.c | 3 | ||||
-rw-r--r-- | drivers/net/sunhme.c | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/drivers/net/sungem.c b/drivers/net/sungem.c index c1a344829b54..a935426cbe63 100644 --- a/drivers/net/sungem.c +++ b/drivers/net/sungem.c | |||
@@ -3146,7 +3146,8 @@ static int __devinit gem_init_one(struct pci_dev *pdev, | |||
3146 | gp->phy_mii.def ? gp->phy_mii.def->name : "no"); | 3146 | gp->phy_mii.def ? gp->phy_mii.def->name : "no"); |
3147 | 3147 | ||
3148 | /* GEM can do it all... */ | 3148 | /* GEM can do it all... */ |
3149 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_LLTX; | 3149 | dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM; |
3150 | dev->features |= dev->hw_features | NETIF_F_RXCSUM | NETIF_F_LLTX; | ||
3150 | if (pci_using_dac) | 3151 | if (pci_using_dac) |
3151 | dev->features |= NETIF_F_HIGHDMA; | 3152 | dev->features |= NETIF_F_HIGHDMA; |
3152 | 3153 | ||
diff --git a/drivers/net/sunhme.c b/drivers/net/sunhme.c index eb4f59fb01e9..80e907df36b4 100644 --- a/drivers/net/sunhme.c +++ b/drivers/net/sunhme.c | |||
@@ -2788,7 +2788,8 @@ static int __devinit happy_meal_sbus_probe_one(struct platform_device *op, int i | |||
2788 | dev->ethtool_ops = &hme_ethtool_ops; | 2788 | dev->ethtool_ops = &hme_ethtool_ops; |
2789 | 2789 | ||
2790 | /* Happy Meal can do it all... */ | 2790 | /* Happy Meal can do it all... */ |
2791 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; | 2791 | dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM; |
2792 | dev->features |= dev->hw_features | NETIF_F_RXCSUM; | ||
2792 | 2793 | ||
2793 | dev->irq = op->archdata.irqs[0]; | 2794 | dev->irq = op->archdata.irqs[0]; |
2794 | 2795 | ||
@@ -3113,7 +3114,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
3113 | dev->dma = 0; | 3114 | dev->dma = 0; |
3114 | 3115 | ||
3115 | /* Happy Meal can do it all... */ | 3116 | /* Happy Meal can do it all... */ |
3116 | dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM; | 3117 | dev->hw_features = NETIF_F_SG | NETIF_F_HW_CSUM; |
3118 | dev->features |= dev->hw_features | NETIF_F_RXCSUM; | ||
3117 | 3119 | ||
3118 | #if defined(CONFIG_SBUS) && defined(CONFIG_PCI) | 3120 | #if defined(CONFIG_SBUS) && defined(CONFIG_PCI) |
3119 | /* Hook up PCI register/descriptor accessors. */ | 3121 | /* Hook up PCI register/descriptor accessors. */ |