From: Ezequiel Garcia Date: Mon, 19 May 2014 16:59:53 +0000 (-0300) Subject: net: mvneta: Factorize feature setting X-Git-Tag: v3.16-rc1~27^2~175^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=01ef26ca44fdfc04a611975f9abe34a04261f98e;p=thirdparty%2Fkernel%2Flinux.git net: mvneta: Factorize feature setting In order to ease the addition of new features, let's factorize the feature list. Signed-off-by: Ezequiel Garcia Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c index c7cbaf3b4afe3..ed7f924a41e26 100644 --- a/drivers/net/ethernet/marvell/mvneta.c +++ b/drivers/net/ethernet/marvell/mvneta.c @@ -2896,8 +2896,8 @@ static int mvneta_probe(struct platform_device *pdev) netif_napi_add(dev, &pp->napi, mvneta_poll, pp->weight); dev->features = NETIF_F_SG | NETIF_F_IP_CSUM; - dev->hw_features |= NETIF_F_SG | NETIF_F_IP_CSUM; - dev->vlan_features |= NETIF_F_SG | NETIF_F_IP_CSUM; + dev->hw_features |= dev->features; + dev->vlan_features |= dev->features; dev->priv_flags |= IFF_UNICAST_FLT; err = register_netdev(dev);