set_irq_noprobe has been renamed to irq_set_noprobe
on commit a0cd9ca2b907d7ee26575e7b63ac92dad768a75e
(genirq: Namespace cleanup) and cbus drivers were
left with broken compilation. Fix it.

Signed-off-by: Felipe Balbi <[email protected]>
---
 drivers/cbus/retu.c  |    2 +-
 drivers/cbus/tahvo.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/cbus/retu.c b/drivers/cbus/retu.c
index e749c0e..444a21e 100644
--- a/drivers/cbus/retu.c
+++ b/drivers/cbus/retu.c
@@ -279,7 +279,7 @@ static inline void retu_irq_setup(int irq)
 #ifdef CONFIG_ARM
        set_irq_flags(irq, IRQF_VALID);
 #else
-       set_irq_noprobe(irq);
+       irq_set_noprobe(irq);
 #endif
 }
 
diff --git a/drivers/cbus/tahvo.c b/drivers/cbus/tahvo.c
index 623dacb..c16e27d7 100644
--- a/drivers/cbus/tahvo.c
+++ b/drivers/cbus/tahvo.c
@@ -224,7 +224,7 @@ static inline void tahvo_irq_setup(int irq)
 #ifdef CONFIG_ARM
        set_irq_flags(irq, IRQF_VALID);
 #else
-       set_irq_noprobe(irq);
+       irq_set_noprobe(irq);
 #endif
 }
 
-- 
1.7.6.396.ge0613

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to