mbox series

[0/2] Cleanup scrap in v4l2_fwnode_reference_parse()

Message ID 20220223115434.21316-1-sakari.ailus@linux.intel.com
Headers show
Series Cleanup scrap in v4l2_fwnode_reference_parse() | expand

Message

Sakari Ailus Feb. 23, 2022, 11:54 a.m. UTC
Hi,

This set removes a redundant return value check and an extra loop in
v4l2_fwnode_reference_parse().

Since v1:

- Split the patch in two, prepending the patch with another that just
  removes -ENODATA check.

- Fix return value of v4l2_fwnode_reference_parse() that was
  unintentionally changed in the process.

Sakari Ailus (2):
  v4l: fwnode: Drop redunant -ENODATA check in property reference
    parsing
  v4l: fwnode: Remove now-redundant loop from
    v4l2_fwnode_parse_reference()

 drivers/media/v4l2-core/v4l2-fwnode.c | 28 ++++++++-------------------
 1 file changed, 8 insertions(+), 20 deletions(-)

Comments

Laurent Pinchart Feb. 23, 2022, 12:21 p.m. UTC | #1
Hi Sakari,

Thank you for the patch.

On Wed, Feb 23, 2022 at 01:54:33PM +0200, Sakari Ailus wrote:
> The check of -ENODATA return value from
> fwnode_property_get_reference_args() was made redundant by commit
> c343bc2ce2c6 ("ACPI: properties: Align return codes of
> __acpi_node_get_property_reference()"). -ENOENT remains to be used to
> signal there are no further entries.
> 
> Remove the check for -ENODATA.
> 
> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/media/v4l2-core/v4l2-fwnode.c | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c
> index 71dcc9a96535..ae140443847b 100644
> --- a/drivers/media/v4l2-core/v4l2-fwnode.c
> +++ b/drivers/media/v4l2-core/v4l2-fwnode.c
> @@ -903,11 +903,7 @@ static int v4l2_fwnode_reference_parse(struct device *dev,
>  	if (!index)
>  		return -ENOENT;
>  
> -	/*
> -	 * Note that right now both -ENODATA and -ENOENT may signal
> -	 * out-of-bounds access. Return the error in cases other than that.
> -	 */
> -	if (ret != -ENOENT && ret != -ENODATA)
> +	if (ret != -ENOENT)
>  		return ret;
>  
>  	for (index = 0;
Laurent Pinchart Feb. 23, 2022, 12:22 p.m. UTC | #2
Hi Sakari,

Thank you for the patch.

On Wed, Feb 23, 2022 at 01:54:34PM +0200, Sakari Ailus wrote:
> v4l2_fwnode_parse_reference() relied on counting the number of references
> for async array memory allocation. The array is long gone so remove
> counting the references now.
> 
> This also changes how the function arrives in different unsuccessful
> return values but the functionality remains unchanged.
> 
> Also the check for -ENODATA is removed, it was made redundant by commit
> c343bc2ce2c6 ("ACPI: properties: Align return codes of
> __acpi_node_get_property_reference()").

This paragraph should be dropped.

> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

> ---
>  drivers/media/v4l2-core/v4l2-fwnode.c | 24 ++++++++----------------
>  1 file changed, 8 insertions(+), 16 deletions(-)
> 
> diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c
> index ae140443847b..afceb35e500c 100644
> --- a/drivers/media/v4l2-core/v4l2-fwnode.c
> +++ b/drivers/media/v4l2-core/v4l2-fwnode.c
> @@ -894,21 +894,8 @@ static int v4l2_fwnode_reference_parse(struct device *dev,
>  	int ret;
>  
>  	for (index = 0;
> -	     !(ret = fwnode_property_get_reference_args(dev_fwnode(dev),
> -							prop, NULL, 0,
> -							index, &args));
> -	     index++)
> -		fwnode_handle_put(args.fwnode);
> -
> -	if (!index)
> -		return -ENOENT;
> -
> -	if (ret != -ENOENT)
> -		return ret;
> -
> -	for (index = 0;
> -	     !fwnode_property_get_reference_args(dev_fwnode(dev), prop, NULL,
> -						 0, index, &args);
> +	     !(ret = fwnode_property_get_reference_args(dev_fwnode(dev), prop,
> +							NULL, 0, index, &args));
>  	     index++) {
>  		struct v4l2_async_subdev *asd;
>  
> @@ -924,7 +911,12 @@ static int v4l2_fwnode_reference_parse(struct device *dev,
>  		}
>  	}
>  
> -	return 0;
> +	/* -ENOENT here means successful parsing */
> +	if (ret != -ENOENT)
> +		return ret;
> +
> +	/* Return -ENOENT if no references were found */
> +	return index ? 0 : -ENOENT;
>  }
>  
>  /*