mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
jme: remove an unnecessary indirection
Remove a define which looks like a OS abstraction layer and makes spatch conversions on this driver problematic. Link: https://lore.kernel.org/r/20220504163939.551231-1-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
6bff3ffcf6
commit
fd49f8e61c
@ -3009,7 +3009,7 @@ jme_init_one(struct pci_dev *pdev,
|
||||
jwrite32(jme, JME_APMC, apmc);
|
||||
}
|
||||
|
||||
NETIF_NAPI_SET(netdev, &jme->napi, jme_poll, NAPI_POLL_WEIGHT)
|
||||
netif_napi_add(netdev, &jme->napi, jme_poll, NAPI_POLL_WEIGHT);
|
||||
|
||||
spin_lock_init(&jme->phy_lock);
|
||||
spin_lock_init(&jme->macaddr_lock);
|
||||
|
@ -379,8 +379,6 @@ struct jme_ring {
|
||||
#define DECLARE_NET_DEVICE_STATS
|
||||
|
||||
#define DECLARE_NAPI_STRUCT struct napi_struct napi;
|
||||
#define NETIF_NAPI_SET(dev, napis, pollfn, q) \
|
||||
netif_napi_add(dev, napis, pollfn, q);
|
||||
#define JME_NAPI_HOLDER(holder) struct napi_struct *holder
|
||||
#define JME_NAPI_WEIGHT(w) int w
|
||||
#define JME_NAPI_WEIGHT_VAL(w) w
|
||||
|
Loading…
Reference in New Issue
Block a user