summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/of.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h
index 70c64ba17fa5..3d0593943f47 100644
--- a/include/linux/of.h
+++ b/include/linux/of.h
@@ -114,6 +114,26 @@ static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
114 set_bit(flag, &n->_flags); 114 set_bit(flag, &n->_flags);
115} 115}
116 116
117static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
118{
119 clear_bit(flag, &n->_flags);
120}
121
122static inline int of_property_check_flag(struct property *p, unsigned long flag)
123{
124 return test_bit(flag, &p->_flags);
125}
126
127static inline void of_property_set_flag(struct property *p, unsigned long flag)
128{
129 set_bit(flag, &p->_flags);
130}
131
132static inline void of_property_clear_flag(struct property *p, unsigned long flag)
133{
134 clear_bit(flag, &p->_flags);
135}
136
117extern struct device_node *of_find_all_nodes(struct device_node *prev); 137extern struct device_node *of_find_all_nodes(struct device_node *prev);
118 138
119/* 139/*