aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/of.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/of.h b/include/linux/of.h
index 196b34c1ef4e..9d9734056e39 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -352,7 +352,7 @@ const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
352 */ 352 */
353const char *of_prop_next_string(struct property *prop, const char *cur); 353const char *of_prop_next_string(struct property *prop, const char *cur);
354 354
355int of_device_is_stdout_path(struct device_node *dn); 355bool of_console_check(struct device_node *dn, char *name, int index);
356 356
357#else /* CONFIG_OF */ 357#else /* CONFIG_OF */
358 358
@@ -564,9 +564,9 @@ static inline int of_machine_is_compatible(const char *compat)
564 return 0; 564 return 0;
565} 565}
566 566
567static inline int of_device_is_stdout_path(struct device_node *dn) 567static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
568{ 568{
569 return 0; 569 return false;
570} 570}
571 571
572static inline const __be32 *of_prop_next_u32(struct property *prop, 572static inline const __be32 *of_prop_next_u32(struct property *prop,