Lines Matching refs:flag

146 static inline int of_node_check_flag(struct device_node *n, unsigned long flag)  in of_node_check_flag()  argument
148 return test_bit(flag, &n->_flags); in of_node_check_flag()
152 unsigned long flag) in of_node_test_and_set_flag() argument
154 return test_and_set_bit(flag, &n->_flags); in of_node_test_and_set_flag()
157 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
159 set_bit(flag, &n->_flags); in of_node_set_flag()
162 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
164 clear_bit(flag, &n->_flags); in of_node_clear_flag()
167 static inline int of_property_check_flag(struct property *p, unsigned long flag) in of_property_check_flag() argument
169 return test_bit(flag, &p->_flags); in of_property_check_flag()
172 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
174 set_bit(flag, &p->_flags); in of_property_set_flag()
177 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument
179 clear_bit(flag, &p->_flags); in of_property_clear_flag()
637 static inline int of_node_check_flag(struct device_node *n, unsigned long flag) in of_node_check_flag() argument
643 unsigned long flag) in of_node_test_and_set_flag() argument
648 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
652 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
656 static inline int of_property_check_flag(struct property *p, unsigned long flag) in of_property_check_flag() argument
661 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
665 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument