aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64/prom.h
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2007-03-29 11:22:57 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:55:40 -0700
commit3dfe10ee7caae9802d84a06fe7724274dea24020 (patch)
tree9d8c39445c1a66135ae23e8444d51a66613e5798 /include/asm-sparc64/prom.h
parent[TIGON3]: of_get_property() returns const. (diff)
downloadlinux-dev-3dfe10ee7caae9802d84a06fe7724274dea24020.tar.xz
linux-dev-3dfe10ee7caae9802d84a06fe7724274dea24020.zip
[SPARC64]: constify some paramaters of OF routines
This starts bringing the PowerPC and Sparc64 implemetations back closer together. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64/prom.h')
-rw-r--r--include/asm-sparc64/prom.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/asm-sparc64/prom.h b/include/asm-sparc64/prom.h
index 50b03387c97b..6394bd1cdcd4 100644
--- a/include/asm-sparc64/prom.h
+++ b/include/asm-sparc64/prom.h
@@ -93,12 +93,14 @@ extern struct device_node *of_find_node_by_phandle(phandle handle);
extern struct device_node *of_get_parent(const struct device_node *node);
extern struct device_node *of_get_next_child(const struct device_node *node,
struct device_node *prev);
-extern struct property *of_find_property(struct device_node *np,
+extern struct property *of_find_property(const struct device_node *np,
const char *name,
int *lenp);
-extern int of_device_is_compatible(struct device_node *device, const char *);
-extern const void *of_get_property(struct device_node *node, const char *name,
- int *lenp);
+extern int of_device_is_compatible(const struct device_node *device,
+ const char *);
+extern const void *of_get_property(const struct device_node *node,
+ const char *name,
+ int *lenp);
#define get_property(node,name,lenp) of_get_property(node,name,lenp)
extern int of_set_property(struct device_node *node, const char *name, void *val, int len);
extern int of_getintprop_default(struct device_node *np,