Lines Matching refs:optional
815 bool shared, bool optional, bool acquired) in __of_reset_control_get() argument
832 return optional ? NULL : ERR_PTR(-ENOENT); in __of_reset_control_get()
840 return optional ? NULL : ERR_PTR(ret); in __of_reset_control_get()
898 bool shared, bool optional, bool acquired) in __reset_control_get_from_lookup() argument
934 return optional ? NULL : ERR_PTR(-ENOENT); in __reset_control_get_from_lookup()
940 int index, bool shared, bool optional, in __reset_control_get() argument
948 optional, acquired); in __reset_control_get()
950 return __reset_control_get_from_lookup(dev, id, shared, optional, in __reset_control_get()
957 bool shared, bool optional, bool acquired) in __reset_control_bulk_get() argument
963 shared, optional, acquired); in __reset_control_bulk_get()
1036 bool shared, bool optional, bool acquired) in __devm_reset_control_get() argument
1045 rstc = __reset_control_get(dev, id, index, shared, optional, acquired); in __devm_reset_control_get()
1072 bool shared, bool optional, bool acquired) in __devm_reset_control_bulk_get() argument
1082 ret = __reset_control_bulk_get(dev, num_rstcs, rstcs, shared, optional, acquired); in __devm_reset_control_bulk_get()
1106 int __device_reset(struct device *dev, bool optional) in __device_reset() argument
1116 return optional ? 0 : -ENOENT; in __device_reset()
1123 rstc = __reset_control_get(dev, NULL, 0, 0, optional, true); in __device_reset()
1174 of_reset_control_array_get(struct device_node *np, bool shared, bool optional, in of_reset_control_array_get() argument
1183 return optional ? NULL : ERR_PTR(num); in of_reset_control_array_get()
1190 rstc = __of_reset_control_get(np, NULL, i, shared, optional, in of_reset_control_array_get()
1227 devm_reset_control_array_get(struct device *dev, bool shared, bool optional) in devm_reset_control_array_get() argument
1236 rstc = of_reset_control_array_get(dev->of_node, shared, optional, true); in devm_reset_control_array_get()