Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac2f43fa authored by Laura Abbott's avatar Laura Abbott Committed by Stephen Boyd
Browse files

dt/flattree: Add stub defintions for flat device tree function



Several flattened device tree functions are currently accessed in a
file that is compiled regardless of whether device tree is enabled
or not. Add stubs for these functions if device tree is not selected.

Change-Id: I0bea3325692fac46d3e5ef457aa30e083f71cd6d
Signed-off-by: default avatarLaura Abbott <lauraa@codeaurora.org>
parent 93e79940
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -119,6 +119,11 @@ extern void unflatten_device_tree(void);
extern void early_init_devtree(void *);
#else /* CONFIG_OF_FLATTREE */
static inline void unflatten_device_tree(void) {}
static inline void *of_get_flat_dt_prop(unsigned long node, const char *name,
				 unsigned long *size) { return NULL; }

static inline int of_flat_dt_is_compatible(unsigned long node,
				const char *name) { return 0; }
#endif /* CONFIG_OF_FLATTREE */

#endif /* __ASSEMBLY__ */