aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/prom.h
diff options
context:
space:
mode:
authorJeremy Kerr <jk@ozlabs.org>2006-06-29 06:28:18 -0400
committerPaul Mackerras <paulus@samba.org>2006-07-02 18:56:33 -0400
commita1af5b2fd49eb24ab8c024da5d853b09841d1f8f (patch)
treea475482232e15282a2d212bbe9ccc10ac5d06234 /include/asm-powerpc/prom.h
parent4ebd9ab387b39c44165cd296a6637082a4f0f66a (diff)
[POWERPC] change get_property to return void *
Change the get_property() function to return a void *. This allows us to later remove the cast done in the majority of callers. Built for pseries, iseries, pmac32, cell, cbesim, g5, systemsim, maple, and mpc* defconfigs Signed-off-by: Jeremy Kerr <jk@ozlabs.org> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/prom.h')
-rw-r--r--include/asm-powerpc/prom.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-powerpc/prom.h b/include/asm-powerpc/prom.h
index 010d186d095..b0768f47480 100644
--- a/include/asm-powerpc/prom.h
+++ b/include/asm-powerpc/prom.h
@@ -167,8 +167,8 @@ extern void unflatten_device_tree(void);
167extern void early_init_devtree(void *); 167extern void early_init_devtree(void *);
168extern int device_is_compatible(struct device_node *device, const char *); 168extern int device_is_compatible(struct device_node *device, const char *);
169extern int machine_is_compatible(const char *compat); 169extern int machine_is_compatible(const char *compat);
170extern unsigned char *get_property(struct device_node *node, const char *name, 170extern void *get_property(struct device_node *node, const char *name,
171 int *lenp); 171 int *lenp);
172extern void print_properties(struct device_node *node); 172extern void print_properties(struct device_node *node);
173extern int prom_n_addr_cells(struct device_node* np); 173extern int prom_n_addr_cells(struct device_node* np);
174extern int prom_n_size_cells(struct device_node* np); 174extern int prom_n_size_cells(struct device_node* np);