Re: [PATCH] usb: dwc3-of-simple: Stop using of_reset_control_array_get() directly
From: Greg Kroah-Hartman
Date: Wed Jan 24 2024 - 07:40:10 EST
On Wed, Jan 24, 2024 at 12:26:20PM +0100, Philipp Zabel wrote:
> Use of_reset_control_array_get_optional_exclusive() instead, it is
> implemented as:
>
> static inline struct reset_control *
> of_reset_control_array_get_optional_exclusive(struct device_node *node)
> {
> return of_reset_control_array_get(node, false, true, true);
> }
>
> This makes the code easier to understand and removes the last remaining
> direct use of of_reset_control_array_get(). No functional changes.
Does this mean the function should be removed or made static now?
thanks,
greg k-h