aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2009-10-15 12:58:07 -0400
committerGrant Likely <grant.likely@secretlab.ca>2009-10-15 12:58:07 -0400
commit82b2928c95d824afd9af3bb41660f3c3fa1f234e (patch)
tree620840d7cf73cde66496d988b35bdfd976c1d7cf
parent8482f56803b9498af84bc09e7bc769a5924f6443 (diff)
of: merge other miscellaneous prototypes
Merge common prototypes used by Microblaze and PowerPC Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: David S. Miller <davem@davemloft.net> Acked-by: Wolfram Sang <w.sang@pengutronix.de> Acked-by: Michal Simek <monstr@monstr.eu> Acked-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--arch/microblaze/include/asm/prom.h12
-rw-r--r--arch/powerpc/include/asm/prom.h14
-rw-r--r--include/linux/of_fdt.h14
3 files changed, 14 insertions, 26 deletions
diff --git a/arch/microblaze/include/asm/prom.h b/arch/microblaze/include/asm/prom.h
index be4db2a22245..ef3ec1d6ceb3 100644
--- a/arch/microblaze/include/asm/prom.h
+++ b/arch/microblaze/include/asm/prom.h
@@ -45,19 +45,7 @@ extern void of_attach_node(struct device_node *);
45extern void of_detach_node(struct device_node *); 45extern void of_detach_node(struct device_node *);
46 46
47/* Other Prototypes */ 47/* Other Prototypes */
48extern void finish_device_tree(void);
49extern void unflatten_device_tree(void);
50extern int early_uartlite_console(void); 48extern int early_uartlite_console(void);
51extern void early_init_devtree(void *);
52extern int machine_is_compatible(const char *compat);
53extern void print_properties(struct device_node *node);
54extern int prom_n_intr_cells(struct device_node *np);
55extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
56extern int prom_add_property(struct device_node *np, struct property *prop);
57extern int prom_remove_property(struct device_node *np, struct property *prop);
58extern int prom_update_property(struct device_node *np,
59 struct property *newprop,
60 struct property *oldprop);
61 49
62extern struct resource *request_OF_resource(struct device_node *node, 50extern struct resource *request_OF_resource(struct device_node *node,
63 int index, const char *name_postfix); 51 int index, const char *name_postfix);
diff --git a/arch/powerpc/include/asm/prom.h b/arch/powerpc/include/asm/prom.h
index c8b59330b04a..2ab9cbd98826 100644
--- a/arch/powerpc/include/asm/prom.h
+++ b/arch/powerpc/include/asm/prom.h
@@ -38,20 +38,6 @@ extern struct device_node *of_chosen;
38extern void of_attach_node(struct device_node *); 38extern void of_attach_node(struct device_node *);
39extern void of_detach_node(struct device_node *); 39extern void of_detach_node(struct device_node *);
40 40
41/* Other Prototypes */
42extern void finish_device_tree(void);
43extern void unflatten_device_tree(void);
44extern void early_init_devtree(void *);
45extern int machine_is_compatible(const char *compat);
46extern void print_properties(struct device_node *node);
47extern int prom_n_intr_cells(struct device_node* np);
48extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
49extern int prom_add_property(struct device_node* np, struct property* prop);
50extern int prom_remove_property(struct device_node *np, struct property *prop);
51extern int prom_update_property(struct device_node *np,
52 struct property *newprop,
53 struct property *oldprop);
54
55#ifdef CONFIG_PPC32 41#ifdef CONFIG_PPC32
56/* 42/*
57 * PCI <-> OF matching functions 43 * PCI <-> OF matching functions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h
index b363eadea819..41d432b13553 100644
--- a/include/linux/of_fdt.h
+++ b/include/linux/of_fdt.h
@@ -68,5 +68,19 @@ extern int __init of_flat_dt_is_compatible(unsigned long node,
68 const char *name); 68 const char *name);
69extern unsigned long __init of_get_flat_dt_root(void); 69extern unsigned long __init of_get_flat_dt_root(void);
70 70
71/* Other Prototypes */
72extern void finish_device_tree(void);
73extern void unflatten_device_tree(void);
74extern void early_init_devtree(void *);
75extern int machine_is_compatible(const char *compat);
76extern void print_properties(struct device_node *node);
77extern int prom_n_intr_cells(struct device_node* np);
78extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
79extern int prom_add_property(struct device_node* np, struct property* prop);
80extern int prom_remove_property(struct device_node *np, struct property *prop);
81extern int prom_update_property(struct device_node *np,
82 struct property *newprop,
83 struct property *oldprop);
84
71#endif /* __ASSEMBLY__ */ 85#endif /* __ASSEMBLY__ */
72#endif /* _LINUX_OF_FDT_H */ 86#endif /* _LINUX_OF_FDT_H */