diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-08-30 17:49:19 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-03 22:21:14 -0400 |
commit | 50ae3c22763b77d55c59fb00274d4b9800e0c857 (patch) | |
tree | 30aa5c26863026318d4f7c2a54087f8a0cde1f72 | |
parent | 13c7bf0871509723a2b3c054d3d6e9e506464e71 (diff) |
net: calxedaxgmac: remove NETIF_F_FRAGLIST setting
The xgmac does not actually handle frag lists, so this option should not
be set. It does not appear to have had any impact though.
Reported-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/calxeda/xgmac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/calxeda/xgmac.c b/drivers/net/ethernet/calxeda/xgmac.c index 7cb148c495c9..71f67206ba3a 100644 --- a/drivers/net/ethernet/calxeda/xgmac.c +++ b/drivers/net/ethernet/calxeda/xgmac.c | |||
@@ -1759,7 +1759,7 @@ static int xgmac_probe(struct platform_device *pdev) | |||
1759 | if (device_can_wakeup(priv->device)) | 1759 | if (device_can_wakeup(priv->device)) |
1760 | priv->wolopts = WAKE_MAGIC; /* Magic Frame as default */ | 1760 | priv->wolopts = WAKE_MAGIC; /* Magic Frame as default */ |
1761 | 1761 | ||
1762 | ndev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA; | 1762 | ndev->hw_features = NETIF_F_SG | NETIF_F_HIGHDMA; |
1763 | if (readl(priv->base + XGMAC_DMA_HW_FEATURE) & DMA_HW_FEAT_TXCOESEL) | 1763 | if (readl(priv->base + XGMAC_DMA_HW_FEATURE) & DMA_HW_FEAT_TXCOESEL) |
1764 | ndev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | | 1764 | ndev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | |
1765 | NETIF_F_RXCSUM; | 1765 | NETIF_F_RXCSUM; |