Hi, On Fri, Mar 28, 2014 at 09:08:02AM -0700, Grant Likely wrote: > The devicetree has a binding for specifying the console device in the > /chosen node, but the kernel doesn't use it consistently. This change > adds an API for testing if a device node is a console, and adds a > preferred console entry if it is. > > At the same time this patch removes the of_device_is_stdout_path() API > since it is unused. > > Signed-off-by: Grant Likely <grant.likely@xxxxxxxxxx> > --- > drivers/of/base.c | 23 +++++++++++++---------- > include/linux/of.h | 6 +++--- > 2 files changed, 16 insertions(+), 13 deletions(-) [...] > diff --git a/include/linux/of.h b/include/linux/of.h > index a8b9dad90c64..417945ebd8e1 100644 > --- a/include/linux/of.h > +++ b/include/linux/of.h > @@ -343,7 +343,7 @@ const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur, > */ > const char *of_prop_next_string(struct property *prop, const char *cur); > > -int of_device_is_stdout_path(struct device_node *dn); > +bool of_console_check(struct device_node *dn, char *name, int index); > > #else /* CONFIG_OF */ > > @@ -544,9 +544,9 @@ static inline int of_machine_is_compatible(const char *compat) > return 0; > } > > -static inline int of_device_is_stdout_path(struct device_node *dn) > +static bool of_console_check(const struct device_node *dn, const char *name, int index) static inline or you'll get warnings about unused functions. -Olof -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html