net: bgmac: remove a copy of the NAPI_POLL_WEIGHT define
Defining local versions of NAPI_POLL_WEIGHT with the same values in the drivers just makes refactoring harder. Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b3c2b61ef6
commit
592df36637
@ -1527,7 +1527,7 @@ int bgmac_enet_probe(struct bgmac *bgmac)
|
||||
if (bcm47xx_nvram_getenv("et0_no_txint", NULL, 0) == 0)
|
||||
bgmac->int_mask &= ~BGMAC_IS_TX_MASK;
|
||||
|
||||
netif_napi_add(net_dev, &bgmac->napi, bgmac_poll, BGMAC_WEIGHT);
|
||||
netif_napi_add(net_dev, &bgmac->napi, bgmac_poll, NAPI_POLL_WEIGHT);
|
||||
|
||||
err = bgmac_phy_connect(bgmac);
|
||||
if (err) {
|
||||
|
@ -364,8 +364,6 @@
|
||||
#define BGMAC_CHIPCTL_7_IF_TYPE_MII 0x00000040
|
||||
#define BGMAC_CHIPCTL_7_IF_TYPE_RGMII 0x00000080
|
||||
|
||||
#define BGMAC_WEIGHT 64
|
||||
|
||||
#define ETHER_MAX_LEN (ETH_FRAME_LEN + ETH_FCS_LEN)
|
||||
|
||||
/* Feature Flags */
|
||||
|
Loading…
Reference in New Issue
Block a user