diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-12-09 16:44:07 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-12-09 16:44:07 -0800 | 
| commit | eef121f407f727a8c34d8284f9b954828d2cb5ce (patch) | |
| tree | 9dd339eab08f77c7419c0646e98a74c99521c728 /drivers/of/irq.c | |
| parent | abb7e2b3f0714b9710b1865d2ba53525a935a7db (diff) | |
| parent | eaddb5725357e9f05ffe5d271630f8197d089da4 (diff) | |
Merge tag 'devicetree-fixes-for-4.4-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux
Pull DT fixes from Rob Herring:
 "I think this should be all for 4.4:
   - Fix incorrect warning about overlapping memory regions
   - Export of_irq_find_parent again which was made static in 4.4, but
     has users pending for 4.5.
   - Fix of_msi_map_rid declaration location
   - Fix re-entrancy for of_fdt_unflatten_tree
   - Clean-up of phys_addr_t printks"
* tag 'devicetree-fixes-for-4.4-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
  of/irq: move of_msi_map_rid declaration to the correct ifdef section
  of/irq: Export of_irq_find_parent again
  of/fdt: Add mutex protection for calls to __unflatten_device_tree()
  of/address: fix typo in comment block of of_translate_one()
  of: do not use 0x in front of %pa
  of: Fix comparison of reserved memory regions
Diffstat (limited to 'drivers/of/irq.c')
| -rw-r--r-- | drivers/of/irq.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/of/irq.c b/drivers/of/irq.c index 902b89be7217..4fa916dffc91 100644 --- a/drivers/of/irq.c +++ b/drivers/of/irq.c @@ -53,7 +53,7 @@ EXPORT_SYMBOL_GPL(irq_of_parse_and_map);   * Returns a pointer to the interrupt parent node, or NULL if the interrupt   * parent could not be determined.   */ -static struct device_node *of_irq_find_parent(struct device_node *child) +struct device_node *of_irq_find_parent(struct device_node *child)  {  	struct device_node *p;  	const __be32 *parp; @@ -77,6 +77,7 @@ static struct device_node *of_irq_find_parent(struct device_node *child)  	return p;  } +EXPORT_SYMBOL_GPL(of_irq_find_parent);  /**   * of_irq_parse_raw - Low level interrupt tree parsing  | 
