Lines Matching refs:optional
464 bool optional) in __of_reset_control_get() argument
481 return optional ? NULL : ERR_PTR(-ENOENT); in __of_reset_control_get()
489 return optional ? NULL : ERR_PTR(ret); in __of_reset_control_get()
546 bool shared, bool optional) in __reset_control_get_from_lookup() argument
585 return optional ? NULL : ERR_PTR(-ENOENT); in __reset_control_get_from_lookup()
591 int index, bool shared, bool optional) in __reset_control_get() argument
595 optional); in __reset_control_get()
597 return __reset_control_get_from_lookup(dev, id, shared, optional); in __reset_control_get()
638 bool optional) in __devm_reset_control_get() argument
647 rstc = __reset_control_get(dev, id, index, shared, optional); in __devm_reset_control_get()
669 int __device_reset(struct device *dev, bool optional) in __device_reset() argument
674 rstc = __reset_control_get(dev, NULL, 0, 0, optional); in __device_reset()
723 of_reset_control_array_get(struct device_node *np, bool shared, bool optional) in of_reset_control_array_get() argument
731 return optional ? NULL : ERR_PTR(num); in of_reset_control_array_get()
738 rstc = __of_reset_control_get(np, NULL, i, shared, optional); in of_reset_control_array_get()
775 devm_reset_control_array_get(struct device *dev, bool shared, bool optional) in devm_reset_control_array_get() argument
785 rstc = of_reset_control_array_get(dev->of_node, shared, optional); in devm_reset_control_array_get()