Ver código fonte

driver/memory: Removal of deprecated NO_IRQ

Replacing the NO_IRQ macro with 0. If there is no interrupt,
returned value will be 0 regardless of what NO_IRQ is defined.

Signed-off-by: Raghav Dogra <raghav@freescale.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Raghav Dogra 9 anos atrás
pai
commit
ed4eeba733
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      drivers/memory/fsl_ifc.c

+ 1 - 1
drivers/memory/fsl_ifc.c

@@ -260,7 +260,7 @@ static int fsl_ifc_ctrl_probe(struct platform_device *dev)
 
 
 	/* get the Controller level irq */
 	/* get the Controller level irq */
 	fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
 	fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0);
-	if (fsl_ifc_ctrl_dev->irq == NO_IRQ) {
+	if (fsl_ifc_ctrl_dev->irq == 0) {
 		dev_err(&dev->dev, "failed to get irq resource "
 		dev_err(&dev->dev, "failed to get irq resource "
 							"for IFC\n");
 							"for IFC\n");
 		ret = -ENODEV;
 		ret = -ENODEV;