Lines Matching refs:flag
188 static inline int of_node_check_flag(struct device_node *n, unsigned long flag) in of_node_check_flag() argument
190 return test_bit(flag, &n->_flags); in of_node_check_flag()
194 unsigned long flag) in of_node_test_and_set_flag() argument
196 return test_and_set_bit(flag, &n->_flags); in of_node_test_and_set_flag()
199 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
201 set_bit(flag, &n->_flags); in of_node_set_flag()
204 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
206 clear_bit(flag, &n->_flags); in of_node_clear_flag()
210 static inline int of_property_check_flag(struct property *p, unsigned long flag) in of_property_check_flag() argument
212 return test_bit(flag, &p->_flags); in of_property_check_flag()
215 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
217 set_bit(flag, &p->_flags); in of_property_set_flag()
220 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument
222 clear_bit(flag, &p->_flags); in of_property_clear_flag()
826 static inline int of_node_check_flag(struct device_node *n, unsigned long flag) in of_node_check_flag() argument
832 unsigned long flag) in of_node_test_and_set_flag() argument
837 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
841 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
845 static inline int of_property_check_flag(struct property *p, unsigned long flag) in of_property_check_flag() argument
850 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
854 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument