Lines Matching refs:flag
155 static inline int of_node_check_flag(struct device_node *n, unsigned long flag) in of_node_check_flag() argument
157 return test_bit(flag, &n->_flags); in of_node_check_flag()
161 unsigned long flag) in of_node_test_and_set_flag() argument
163 return test_and_set_bit(flag, &n->_flags); in of_node_test_and_set_flag()
166 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
168 set_bit(flag, &n->_flags); in of_node_set_flag()
171 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
173 clear_bit(flag, &n->_flags); in of_node_clear_flag()
176 static inline int of_property_check_flag(struct property *p, unsigned long flag) in of_property_check_flag() argument
178 return test_bit(flag, &p->_flags); in of_property_check_flag()
181 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
183 set_bit(flag, &p->_flags); in of_property_set_flag()
186 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument
188 clear_bit(flag, &p->_flags); in of_property_clear_flag()
643 static inline int of_node_check_flag(struct device_node *n, unsigned long flag) in of_node_check_flag() argument
649 unsigned long flag) in of_node_test_and_set_flag() argument
654 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
658 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
662 static inline int of_property_check_flag(struct property *p, unsigned long flag) in of_property_check_flag() argument
667 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
671 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument