Lines Matching refs:optional

997 		       bool shared, bool optional, bool acquired)  in __of_reset_control_get()  argument
1015 return optional ? NULL : ERR_PTR(-ENOENT); in __of_reset_control_get()
1024 return optional ? NULL : ERR_PTR(ret); in __of_reset_control_get()
1033 return optional ? NULL : ERR_PTR(ret); in __of_reset_control_get()
1094 bool shared, bool optional, bool acquired) in __reset_control_get_from_lookup() argument
1130 return optional ? NULL : ERR_PTR(-ENOENT); in __reset_control_get_from_lookup()
1136 int index, bool shared, bool optional, in __reset_control_get() argument
1144 optional, acquired); in __reset_control_get()
1146 return __reset_control_get_from_lookup(dev, id, shared, optional, in __reset_control_get()
1153 bool shared, bool optional, bool acquired) in __reset_control_bulk_get() argument
1159 shared, optional, acquired); in __reset_control_bulk_get()
1229 bool shared, bool optional, bool acquired) in __devm_reset_control_get() argument
1238 rstc = __reset_control_get(dev, id, index, shared, optional, acquired); in __devm_reset_control_get()
1265 bool shared, bool optional, bool acquired) in __devm_reset_control_bulk_get() argument
1275 ret = __reset_control_bulk_get(dev, num_rstcs, rstcs, shared, optional, acquired); in __devm_reset_control_bulk_get()
1299 int __device_reset(struct device *dev, bool optional) in __device_reset() argument
1309 return optional ? 0 : -ENOENT; in __device_reset()
1316 rstc = __reset_control_get(dev, NULL, 0, 0, optional, true); in __device_reset()
1367 of_reset_control_array_get(struct device_node *np, bool shared, bool optional, in of_reset_control_array_get() argument
1376 return optional ? NULL : ERR_PTR(num); in of_reset_control_array_get()
1384 rstc = __of_reset_control_get(np, NULL, i, shared, optional, in of_reset_control_array_get()
1420 devm_reset_control_array_get(struct device *dev, bool shared, bool optional) in devm_reset_control_array_get() argument
1429 rstc = of_reset_control_array_get(dev->of_node, shared, optional, true); in devm_reset_control_array_get()