]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
fec: Use NAPI_POLL_WEIGHT
authorFabio Estevam <fabio.estevam@freescale.com>
Tue, 27 Aug 2013 20:35:08 +0000 (17:35 -0300)
committerDavid S. Miller <davem@davemloft.net>
Thu, 29 Aug 2013 19:58:34 +0000 (15:58 -0400)
Instead of using a custom 'FEC_NAPI_WEIGHT', just use the generic
'NAPI_POLL_WEIGHT' definition instead.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/freescale/fec_main.c

index fdf9307ba9e6ee412e832266d5f05edcf9269334..c88a1290602ad29f9c5bea4dee859e52d3357787 100644 (file)
@@ -69,7 +69,6 @@ static void set_multicast_list(struct net_device *ndev);
 #endif
 
 #define DRIVER_NAME    "fec"
-#define FEC_NAPI_WEIGHT        64
 
 /* Pause frame feild and FIFO threshold */
 #define FEC_ENET_FCE   (1 << 5)
@@ -1981,7 +1980,7 @@ static int fec_enet_init(struct net_device *ndev)
        ndev->ethtool_ops = &fec_enet_ethtool_ops;
 
        writel(FEC_RX_DISABLED_IMASK, fep->hwp + FEC_IMASK);
-       netif_napi_add(ndev, &fep->napi, fec_enet_rx_napi, FEC_NAPI_WEIGHT);
+       netif_napi_add(ndev, &fep->napi, fec_enet_rx_napi, NAPI_POLL_WEIGHT);
 
        if (id_entry->driver_data & FEC_QUIRK_HAS_VLAN) {
                /* enable hw VLAN support */