提交 54e977f0 编写于 作者: A Allen Pais 提交者: David S. Miller

net: natsemi: convert tasklets to use new tasklet_setup() API

In preparation for unconditionally passing the
struct tasklet_struct pointer to all tasklet
callbacks, switch to using the new tasklet_setup()
and from_tasklet() to pass the tasklet pointer explicitly.
Signed-off-by: NRomain Perier <romain.perier@gmail.com>
Signed-off-by: NAllen Pais <apais@linux.microsoft.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 9ad5a250
...@@ -923,10 +923,10 @@ static void rx_irq(struct net_device *ndev) ...@@ -923,10 +923,10 @@ static void rx_irq(struct net_device *ndev)
spin_unlock_irqrestore(&info->lock, flags); spin_unlock_irqrestore(&info->lock, flags);
} }
static void rx_action(unsigned long _dev) static void rx_action(struct tasklet_struct *t)
{ {
struct net_device *ndev = (void *)_dev; struct ns83820 *dev = from_tasklet(dev, t, rx_tasklet);
struct ns83820 *dev = PRIV(ndev); struct net_device *ndev = dev->ndev;
rx_irq(ndev); rx_irq(ndev);
writel(ihr, dev->base + IHR); writel(ihr, dev->base + IHR);
...@@ -1924,7 +1924,7 @@ static int ns83820_init_one(struct pci_dev *pci_dev, ...@@ -1924,7 +1924,7 @@ static int ns83820_init_one(struct pci_dev *pci_dev,
SET_NETDEV_DEV(ndev, &pci_dev->dev); SET_NETDEV_DEV(ndev, &pci_dev->dev);
INIT_WORK(&dev->tq_refill, queue_refill); INIT_WORK(&dev->tq_refill, queue_refill);
tasklet_init(&dev->rx_tasklet, rx_action, (unsigned long)ndev); tasklet_setup(&dev->rx_tasklet, rx_action);
err = pci_enable_device(pci_dev); err = pci_enable_device(pci_dev);
if (err) { if (err) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册