• Home
  • Raw
  • Download

Lines Matching refs:flag

190 static inline int of_node_check_flag(const struct device_node *n, unsigned long flag)  in of_node_check_flag()  argument
192 return test_bit(flag, &n->_flags); in of_node_check_flag()
196 unsigned long flag) in of_node_test_and_set_flag() argument
198 return test_and_set_bit(flag, &n->_flags); in of_node_test_and_set_flag()
201 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
203 set_bit(flag, &n->_flags); in of_node_set_flag()
206 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
208 clear_bit(flag, &n->_flags); in of_node_clear_flag()
212 static inline int of_property_check_flag(const struct property *p, unsigned long flag) in of_property_check_flag() argument
214 return test_bit(flag, &p->_flags); in of_property_check_flag()
217 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
219 set_bit(flag, &p->_flags); in of_property_set_flag()
222 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument
224 clear_bit(flag, &p->_flags); in of_property_clear_flag()
841 static inline int of_node_check_flag(struct device_node *n, unsigned long flag) in of_node_check_flag() argument
847 unsigned long flag) in of_node_test_and_set_flag() argument
852 static inline void of_node_set_flag(struct device_node *n, unsigned long flag) in of_node_set_flag() argument
856 static inline void of_node_clear_flag(struct device_node *n, unsigned long flag) in of_node_clear_flag() argument
861 unsigned long flag) in of_property_check_flag() argument
866 static inline void of_property_set_flag(struct property *p, unsigned long flag) in of_property_set_flag() argument
870 static inline void of_property_clear_flag(struct property *p, unsigned long flag) in of_property_clear_flag() argument