diff options
author | Michal Simek <monstr@monstr.eu> | 2011-12-21 15:42:50 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-12-21 15:42:50 -0500 |
commit | 4e68ea26e76273cc62a981a414a8319a7f4c1077 (patch) | |
tree | 085b3639500a2a45077fc6076b4907e051e83de1 /drivers/net/ethernet/xilinx/ll_temac_main.c | |
parent | ab56222a32b9dbaae19c1d37f07b0ac4fc3c27ec (diff) |
net: ethernet: xilinx: Don't use NO_IRQ in xilinx
Fix ll_temac and emaclite drivers. Only Microblaze and Xilinx PPC
use then and both use NO_IRQ as 0. It will be removed in near future.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/xilinx/ll_temac_main.c')
-rw-r--r-- | drivers/net/ethernet/xilinx/ll_temac_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/xilinx/ll_temac_main.c b/drivers/net/ethernet/xilinx/ll_temac_main.c index 903a77b416d..f21addb1db9 100644 --- a/drivers/net/ethernet/xilinx/ll_temac_main.c +++ b/drivers/net/ethernet/xilinx/ll_temac_main.c @@ -1091,7 +1091,7 @@ static int __devinit temac_of_probe(struct platform_device *op) of_node_put(np); /* Finished with the DMA node; drop the reference */ - if ((lp->rx_irq == NO_IRQ) || (lp->tx_irq == NO_IRQ)) { + if (!lp->rx_irq || !lp->tx_irq) { dev_err(&op->dev, "could not determine irqs\n"); rc = -ENOMEM; goto err_iounmap_2; |