public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] of/irq: add empty irq_of_parse_and_map() for non-dt builds
@ 2012-03-24  9:27 Thomas Abraham
       [not found] ` <4F6DC847.8000902@gmail.com>
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas Abraham @ 2012-03-24  9:27 UTC (permalink / raw)
  To: devicetree-discuss, linux-kernel; +Cc: rob.herring, grant.likely, patches

Add a empty irq_of_parse_and_map() that returns 0 for non-dt builds and
avoid having #ifdef CONFIG_OF around all calls to irq_of_parse_and_map().

Suggested-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Thomas Abraham <thomas.abraham@linaro.org>
---
 include/linux/of_irq.h |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/include/linux/of_irq.h b/include/linux/of_irq.h
index d229ad3..5614355 100644
--- a/include/linux/of_irq.h
+++ b/include/linux/of_irq.h
@@ -76,5 +76,11 @@ extern struct device_node *of_irq_find_parent(struct device_node *child);
 extern void of_irq_init(const struct of_device_id *matches);
 
 #endif /* CONFIG_OF_IRQ */
+#else /* CONFIG_OF */
+static inline unsigned int irq_of_parse_and_map(struct device_node *dev,
+						int index)
+{
+	return 0;
+}
 #endif /* CONFIG_OF */
 #endif /* __OF_IRQ_H */
-- 
1.6.6.rc2


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-03-28  4:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-24  9:27 [PATCH] of/irq: add empty irq_of_parse_and_map() for non-dt builds Thomas Abraham
     [not found] ` <4F6DC847.8000902@gmail.com>
2012-03-24 13:18   ` Rob Herring
     [not found]   ` <CAJuYYwR92M7faLaZxT8ycKZB=ORf5J8fELwFENaL_GK7dtG7ew@mail.gmail.com>
2012-03-24 16:12     ` Thomas Abraham
2012-03-25  0:43       ` Grant Likely
     [not found]   ` <20120325004232.AD9793E0409@localhost>
2012-03-25 14:56     ` Thomas Abraham
2012-03-27 22:28       ` Grant Likely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox