diff options
author | Grant Likely <grant.likely@secretlab.ca> | 2010-02-14 09:13:38 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-02-14 09:13:38 -0500 |
commit | 21b082ecdd7e6b8a5eba2cc013cae41b24de7f51 (patch) | |
tree | 092dd22d7e14c86d84d6f42c87dca39cdcb7b1fb /include/linux/of_fdt.h | |
parent | 04b954a673dd02f585a2769c4945a43880faa989 (diff) |
of: Remove old and misplaced function declarations
The following functions don't exist:
finish_device_tree()
print_properties()
prom_n_intr_cells()
prom_get_irq_senses()
The following functions are in drivers/of/base.c, so the declaration
belongs in of.h instead of of_fdt.h
of_machine_is_compatible()
prom_add_property()
prom_remove_property()
prom_update_property()
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'include/linux/of_fdt.h')
-rw-r--r-- | include/linux/of_fdt.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h index 0007187ab59b..c9cb8a7bc065 100644 --- a/include/linux/of_fdt.h +++ b/include/linux/of_fdt.h | |||
@@ -95,18 +95,8 @@ extern int early_init_dt_scan_root(unsigned long node, const char *uname, | |||
95 | int depth, void *data); | 95 | int depth, void *data); |
96 | 96 | ||
97 | /* Other Prototypes */ | 97 | /* Other Prototypes */ |
98 | extern void finish_device_tree(void); | ||
99 | extern void unflatten_device_tree(void); | 98 | extern void unflatten_device_tree(void); |
100 | extern void early_init_devtree(void *); | 99 | extern void early_init_devtree(void *); |
101 | extern int of_machine_is_compatible(const char *compat); | ||
102 | extern void print_properties(struct device_node *node); | ||
103 | extern int prom_n_intr_cells(struct device_node* np); | ||
104 | extern void prom_get_irq_senses(unsigned char *senses, int off, int max); | ||
105 | extern int prom_add_property(struct device_node* np, struct property* prop); | ||
106 | extern int prom_remove_property(struct device_node *np, struct property *prop); | ||
107 | extern int prom_update_property(struct device_node *np, | ||
108 | struct property *newprop, | ||
109 | struct property *oldprop); | ||
110 | 100 | ||
111 | #endif /* __ASSEMBLY__ */ | 101 | #endif /* __ASSEMBLY__ */ |
112 | #endif /* _LINUX_OF_FDT_H */ | 102 | #endif /* _LINUX_OF_FDT_H */ |