* [PATCH 1/3] driver/memory: Removal of deprecated NO_IRQ
@ 2015-12-16 10:39 Raghav Dogra
0 siblings, 0 replies; 4+ messages in thread
From: Raghav Dogra @ 2015-12-16 10:39 UTC (permalink / raw)
To: linux-kernel; +Cc: prabhakar, scottwood, Raghav Dogra
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>
---
drivers/memory/fsl_ifc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/memory/fsl_ifc.c b/drivers/memory/fsl_ifc.c
index e87459f..8436c59 100644
--- a/drivers/memory/fsl_ifc.c
+++ b/drivers/memory/fsl_ifc.c
@@ -259,7 +259,7 @@ static int fsl_ifc_ctrl_probe(struct platform_device *dev)
/* get the Controller level irq */
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 "
"for IFC\n");
ret = -ENODEV;
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 1/3] driver/memory: Removal of deprecated NO_IRQ
@ 2015-12-16 10:41 Raghav Dogra
2016-02-01 18:45 ` Brian Norris
0 siblings, 1 reply; 4+ messages in thread
From: Raghav Dogra @ 2015-12-16 10:41 UTC (permalink / raw)
To: linux-mtd; +Cc: prabhakar, scottwood, Raghav Dogra
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>
---
drivers/memory/fsl_ifc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/memory/fsl_ifc.c b/drivers/memory/fsl_ifc.c
index e87459f..8436c59 100644
--- a/drivers/memory/fsl_ifc.c
+++ b/drivers/memory/fsl_ifc.c
@@ -259,7 +259,7 @@ static int fsl_ifc_ctrl_probe(struct platform_device *dev)
/* get the Controller level irq */
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 "
"for IFC\n");
ret = -ENODEV;
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 1/3] driver/memory: Removal of deprecated NO_IRQ
@ 2016-02-01 10:46 Raghav Dogra
0 siblings, 0 replies; 4+ messages in thread
From: Raghav Dogra @ 2016-02-01 10:46 UTC (permalink / raw)
To: linuxppc-dev; +Cc: oss, prabhakar.kushwaha, Raghav Dogra
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>
---
This patchset is dependent on the IFC deep sleep patch:
https://patchwork.ozlabs.org/patch/564785/
drivers/memory/fsl_ifc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/memory/fsl_ifc.c b/drivers/memory/fsl_ifc.c
index f5186fa..054809e 100644
--- a/drivers/memory/fsl_ifc.c
+++ b/drivers/memory/fsl_ifc.c
@@ -262,7 +262,7 @@ static int fsl_ifc_ctrl_probe(struct platform_device *dev)
/* get the Controller level irq */
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 "
"for IFC\n");
ret = -ENODEV;
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/3] driver/memory: Removal of deprecated NO_IRQ
2015-12-16 10:41 [PATCH 1/3] driver/memory: Removal of deprecated NO_IRQ Raghav Dogra
@ 2016-02-01 18:45 ` Brian Norris
0 siblings, 0 replies; 4+ messages in thread
From: Brian Norris @ 2016-02-01 18:45 UTC (permalink / raw)
To: Raghav Dogra; +Cc: linux-mtd, scottwood, prabhakar
On Wed, Dec 16, 2015 at 04:11:31PM +0530, Raghav Dogra wrote:
> 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>
> ---
> drivers/memory/fsl_ifc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/memory/fsl_ifc.c b/drivers/memory/fsl_ifc.c
> index e87459f..8436c59 100644
> --- a/drivers/memory/fsl_ifc.c
> +++ b/drivers/memory/fsl_ifc.c
> @@ -259,7 +259,7 @@ static int fsl_ifc_ctrl_probe(struct platform_device *dev)
>
> /* get the Controller level irq */
> 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 "
> "for IFC\n");
> ret = -ENODEV;
Applied this one to l2-mtd.git, as it seems obvious.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-01 18:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-16 10:41 [PATCH 1/3] driver/memory: Removal of deprecated NO_IRQ Raghav Dogra
2016-02-01 18:45 ` Brian Norris
-- strict thread matches above, loose matches on Subject: below --
2016-02-01 10:46 Raghav Dogra
2015-12-16 10:39 Raghav Dogra
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.