Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 599c2e1f authored by Michael Opdenacker's avatar Michael Opdenacker Committed by David S. Miller
Browse files

net: pxa168_eth: remove deprecated IRQF_DISABLED

parent dddb29e4
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1123,8 +1123,7 @@ static int pxa168_eth_open(struct net_device *dev)
	struct pxa168_eth_private *pep = netdev_priv(dev);
	int err;

	err = request_irq(dev->irq, pxa168_eth_int_handler,
			  IRQF_DISABLED, dev->name, dev);
	err = request_irq(dev->irq, pxa168_eth_int_handler, 0, dev->name, dev);
	if (err) {
		dev_err(&dev->dev, "can't assign irq\n");
		return -EAGAIN;