Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Raghav Dogra and committed by
Brian Norris
ed4eeba7 26d072e3

+1 -1
+1 -1
drivers/memory/fsl_ifc.c
··· 260 260 261 261 /* get the Controller level irq */ 262 262 fsl_ifc_ctrl_dev->irq = irq_of_parse_and_map(dev->dev.of_node, 0); 263 - if (fsl_ifc_ctrl_dev->irq == NO_IRQ) { 263 + if (fsl_ifc_ctrl_dev->irq == 0) { 264 264 dev_err(&dev->dev, "failed to get irq resource " 265 265 "for IFC\n"); 266 266 ret = -ENODEV;