aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc64
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2007-03-29 00:53:28 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:54:35 -0700
commit64b94701c0714f814e640ff351d5f784fdc0381e (patch)
tree2bb66f86ccec74533e40042f60aafe8551cae991 /arch/sparc64
parent[SPARC/64] constify of_get_property return: sound (diff)
downloadlinux-dev-64b94701c0714f814e640ff351d5f784fdc0381e.tar.xz
linux-dev-64b94701c0714f814e640ff351d5f784fdc0381e.zip
[SPARC/64]: constify of_get_property return
Finally, we actually change the functions themselves. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64')
-rw-r--r--arch/sparc64/kernel/prom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc64/kernel/prom.c b/arch/sparc64/kernel/prom.c
index 25b70368973c..493db961a1f6 100644
--- a/arch/sparc64/kernel/prom.c
+++ b/arch/sparc64/kernel/prom.c
@@ -174,7 +174,7 @@ EXPORT_SYMBOL(of_find_property);
* Find a property with a given name for a given node
* and return the value.
*/
-void *of_get_property(struct device_node *np, const char *name, int *lenp)
+const void *of_get_property(struct device_node *np, const char *name, int *lenp)
{
struct property *pp = of_find_property(np,name,lenp);
return pp ? pp->value : NULL;