[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-10abc7df9277a81971924a6c03f74e86d799daf1@git.kernel.org>
Date: Fri, 9 Oct 2015 08:22:13 -0700
From: tip-bot for Marc Zyngier <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: tglx@...utronix.de, hpa@...or.com, mingo@...nel.org,
jiang.liu@...ux.intel.com, linux-kernel@...r.kernel.org,
marc.zyngier@....com, jason@...edaemon.net
Subject: [tip:irq/urgent] irqdomain: Add an accessor for the of_node field
Commit-ID: 10abc7df9277a81971924a6c03f74e86d799daf1
Gitweb: http://git.kernel.org/tip/10abc7df9277a81971924a6c03f74e86d799daf1
Author: Marc Zyngier <marc.zyngier@....com>
AuthorDate: Fri, 9 Oct 2015 15:50:11 +0100
Committer: Thomas Gleixner <tglx@...utronix.de>
CommitDate: Fri, 9 Oct 2015 17:17:30 +0200
irqdomain: Add an accessor for the of_node field
As we're about to remove the of_node field from the irqdomain
structure, introduce an accessor for it. Subsequent patches
will take care of the actual repainting.
Signed-off-by: Marc Zyngier <marc.zyngier@....com>
Cc: Jiang Liu <jiang.liu@...ux.intel.com>
Cc: Jason Cooper <jason@...edaemon.net>
Link: http://lkml.kernel.org/r/1444402211-1141-1-git-send-email-marc.zyngier@arm.com
Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
---
include/linux/irqdomain.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h
index d3ca792..f644fdb 100644
--- a/include/linux/irqdomain.h
+++ b/include/linux/irqdomain.h
@@ -161,6 +161,11 @@ enum {
IRQ_DOMAIN_FLAG_NONCORE = (1 << 16),
};
+static inline struct device_node *irq_domain_get_of_node(struct irq_domain *d)
+{
+ return d->of_node;
+}
+
#ifdef CONFIG_IRQ_DOMAIN
struct irq_domain *__irq_domain_add(struct device_node *of_node, int size,
irq_hw_number_t hwirq_max, int direct_max,
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists