소스 검색

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>
Michal Simek 13 년 전
부모
커밋
4e68ea26e7
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      drivers/net/ethernet/xilinx/ll_temac_main.c
  2. 1 1
      drivers/net/ethernet/xilinx/xilinx_emaclite.c

+ 1 - 1
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 */
 	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");
 		dev_err(&op->dev, "could not determine irqs\n");
 		rc = -ENOMEM;
 		rc = -ENOMEM;
 		goto err_iounmap_2;
 		goto err_iounmap_2;

+ 1 - 1
drivers/net/ethernet/xilinx/xilinx_emaclite.c

@@ -1129,7 +1129,7 @@ static int __devinit xemaclite_of_probe(struct platform_device *ofdev)
 
 
 	/* Get IRQ for the device */
 	/* Get IRQ for the device */
 	rc = of_irq_to_resource(ofdev->dev.of_node, 0, &r_irq);
 	rc = of_irq_to_resource(ofdev->dev.of_node, 0, &r_irq);
-	if (rc == NO_IRQ) {
+	if (!rc) {
 		dev_err(dev, "no IRQ found\n");
 		dev_err(dev, "no IRQ found\n");
 		return rc;
 		return rc;
 	}
 	}