diff options
author | Dave C Boutcher <sleddog@us.ibm.com> | 2006-01-12 17:09:29 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-13 05:11:57 -0500 |
commit | ecaa8b0ff326920c8a89d748382e1c1d8812676c (patch) | |
tree | 49027f063fee21f6b03f4b2ccd5c0b80b0aa4440 /arch/powerpc | |
parent | 088186ded490ced80758200cf8f906ed741df306 (diff) |
[PATCH] powerpc: Add of_find_property function
Add an of_find_property function that returns a struct property
given a property name. Then change the get_property function to
use that routine internally.
Signed-off-by: Dave Boutcher <sleddog@us.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/kernel/prom.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/arch/powerpc/kernel/prom.c b/arch/powerpc/kernel/prom.c index 70057b63de21..d50c8df0183e 100644 --- a/arch/powerpc/kernel/prom.c +++ b/arch/powerpc/kernel/prom.c | |||
@@ -1779,12 +1779,8 @@ static int __init prom_reconfig_setup(void) | |||
1779 | __initcall(prom_reconfig_setup); | 1779 | __initcall(prom_reconfig_setup); |
1780 | #endif | 1780 | #endif |
1781 | 1781 | ||
1782 | /* | 1782 | struct property *of_find_property(struct device_node *np, const char *name, |
1783 | * Find a property with a given name for a given node | 1783 | int *lenp) |
1784 | * and return the value. | ||
1785 | */ | ||
1786 | unsigned char *get_property(struct device_node *np, const char *name, | ||
1787 | int *lenp) | ||
1788 | { | 1784 | { |
1789 | struct property *pp; | 1785 | struct property *pp; |
1790 | 1786 | ||
@@ -1797,6 +1793,17 @@ unsigned char *get_property(struct device_node *np, const char *name, | |||
1797 | } | 1793 | } |
1798 | read_unlock(&devtree_lock); | 1794 | read_unlock(&devtree_lock); |
1799 | 1795 | ||
1796 | return pp; | ||
1797 | } | ||
1798 | |||
1799 | /* | ||
1800 | * Find a property with a given name for a given node | ||
1801 | * and return the value. | ||
1802 | */ | ||
1803 | unsigned char *get_property(struct device_node *np, const char *name, | ||
1804 | int *lenp) | ||
1805 | { | ||
1806 | struct property *pp = of_find_property(np,name,lenp); | ||
1800 | return pp ? pp->value : NULL; | 1807 | return pp ? pp->value : NULL; |
1801 | } | 1808 | } |
1802 | EXPORT_SYMBOL(get_property); | 1809 | EXPORT_SYMBOL(get_property); |