Commit 0b8188a4 authored by Stephen Rothwell's avatar Stephen Rothwell Committed by Paul Mackerras

[POWERPC] Remove get_property and device_is_compatible

They were only needed for backwards compatibility and all in tree uses
have now been changed.
Signed-off-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Acked-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 9c25099d
...@@ -145,7 +145,6 @@ extern void of_detach_node(struct device_node *); ...@@ -145,7 +145,6 @@ extern void of_detach_node(struct device_node *);
extern void finish_device_tree(void); extern void finish_device_tree(void);
extern void unflatten_device_tree(void); extern void unflatten_device_tree(void);
extern void early_init_devtree(void *); extern void early_init_devtree(void *);
#define device_is_compatible(d, c) of_device_is_compatible((d), (c))
extern int machine_is_compatible(const char *compat); extern int machine_is_compatible(const char *compat);
extern void print_properties(struct device_node *node); extern void print_properties(struct device_node *node);
extern int prom_n_intr_cells(struct device_node* np); extern int prom_n_intr_cells(struct device_node* np);
......
...@@ -35,7 +35,6 @@ extern unsigned long sub_reloc_offset(unsigned long); ...@@ -35,7 +35,6 @@ extern unsigned long sub_reloc_offset(unsigned long);
#define machine_is_compatible(x) 0 #define machine_is_compatible(x) 0
#define of_find_compatible_node(f, t, c) NULL #define of_find_compatible_node(f, t, c) NULL
#define of_get_property(p, n, l) NULL #define of_get_property(p, n, l) NULL
#define get_property(a, b, c) of_get_property((a), (b), (c))
#endif /* _PPC_PROM_H */ #endif /* _PPC_PROM_H */
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
...@@ -54,7 +54,6 @@ extern int of_device_is_compatible(const struct device_node *device, ...@@ -54,7 +54,6 @@ extern int of_device_is_compatible(const struct device_node *device,
extern const void *of_get_property(const struct device_node *node, extern const void *of_get_property(const struct device_node *node,
const char *name, const char *name,
int *lenp); int *lenp);
#define get_property(a, b, c) of_get_property((a), (b), (c))
extern int of_n_addr_cells(struct device_node *np); extern int of_n_addr_cells(struct device_node *np);
extern int of_n_size_cells(struct device_node *np); extern int of_n_size_cells(struct device_node *np);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment