aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@linaro.org>2014-03-28 11:12:18 -0400
committerGrant Likely <grant.likely@linaro.org>2014-06-26 12:12:23 -0400
commita752ee56ad84bf9a35b8323af1ad22b03c1df2c4 (patch)
treeca01e3094f6fcd5b101dcc7edf716a25df3029d5 /include/linux
parent003882180340a2808151d320dedd853f4cff5e4b (diff)
tty: Update hypervisor tty drivers to use core stdout parsing code.
The evh_bytechan, hvc_opal and hvc_vio drivers all open code the parsing of the stdout node in the device tree. This patch simplifies the driver by removing the duplicated functionality. Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/of.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h
index 9d9734056e39..f0d256273c83 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -113,6 +113,7 @@ static inline void of_node_put(struct device_node *node) { }
113extern struct device_node *of_allnodes; 113extern struct device_node *of_allnodes;
114extern struct device_node *of_chosen; 114extern struct device_node *of_chosen;
115extern struct device_node *of_aliases; 115extern struct device_node *of_aliases;
116extern struct device_node *of_stdout;
116extern raw_spinlock_t devtree_lock; 117extern raw_spinlock_t devtree_lock;
117 118
118static inline bool of_have_populated_dt(void) 119static inline bool of_have_populated_dt(void)