diff mbox series

[v2,1/4] v4l: fwnode: Rename and make static V4L2 async notifier helper

Message ID 20210312125657.25442-2-sakari.ailus@linux.intel.com
State Accepted
Commit 9e7fabbcb01a7e97c236d273e2017c1a35007a42
Headers show
Series Knead V4L2 async and fwnode frameworks a little | expand

Commit Message

Sakari Ailus March 12, 2021, 12:56 p.m. UTC
Rename v4l2_async_notifier_parse_fwnode_sensor_common() as
v4l2_async_notifier_parse_fwnode_sensor() and make the function static, as
it's not used by a driver and maybe never will.

Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
---
 drivers/media/v4l2-core/v4l2-fwnode.c | 27 ++++++++++++++++++++++-----
 include/media/v4l2-async.h            |  2 +-
 include/media/v4l2-fwnode.h           | 21 ---------------------
 3 files changed, 23 insertions(+), 27 deletions(-)

Comments

Ezequiel Garcia March 23, 2021, 4:18 p.m. UTC | #1
On Fri, 2021-03-12 at 14:56 +0200, Sakari Ailus wrote:
> Rename v4l2_async_notifier_parse_fwnode_sensor_common() as

> v4l2_async_notifier_parse_fwnode_sensor() and make the function static, as

> it's not used by a driver and maybe never will.

> 

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


Reviewed-by: Ezequiel Garcia <ezequiel@collabora.com>


Thanks,
Ezequiel

> ---

>  drivers/media/v4l2-core/v4l2-fwnode.c | 27 ++++++++++++++++++++++-----

>  include/media/v4l2-async.h            |  2 +-

>  include/media/v4l2-fwnode.h           | 21 ---------------------

>  3 files changed, 23 insertions(+), 27 deletions(-)

> 

> diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c

> index 2283ff3b8e1d..9c1b38919491 100644

> --- a/drivers/media/v4l2-core/v4l2-fwnode.c

> +++ b/drivers/media/v4l2-core/v4l2-fwnode.c

> @@ -1259,8 +1259,27 @@ v4l2_fwnode_reference_parse_int_props(struct device *dev,

>         return !fwnode || PTR_ERR(fwnode) == -ENOENT ? 0 : PTR_ERR(fwnode);

>  }

>  

> -int v4l2_async_notifier_parse_fwnode_sensor_common(struct device *dev,

> -                                                  struct v4l2_async_notifier *notifier)

> +/**

> + * v4l2_async_notifier_parse_fwnode_sensor - parse common references on

> + *                                          sensors for async sub-devices

> + * @dev: the device node the properties of which are parsed for references

> + * @notifier: the async notifier where the async subdevs will be added

> + *

> + * Parse common sensor properties for remote devices related to the

> + * sensor and set up async sub-devices for them.

> + *

> + * Any notifier populated using this function must be released with a call to

> + * v4l2_async_notifier_release() after it has been unregistered and the async

> + * sub-devices are no longer in use, even in the case the function returned an

> + * error.

> + *

> + * Return: 0 on success

> + *        -ENOMEM if memory allocation failed

> + *        -EINVAL if property parsing failed

> + */

> +static int

> +v4l2_async_notifier_parse_fwnode_sensor(struct device *dev,

> +                                       struct v4l2_async_notifier *notifier)

>  {

>         static const char * const led_props[] = { "led" };

>         static const struct v4l2_fwnode_int_props props[] = {

> @@ -1288,7 +1307,6 @@ int v4l2_async_notifier_parse_fwnode_sensor_common(struct device *dev,

>  

>         return 0;

>  }

> -EXPORT_SYMBOL_GPL(v4l2_async_notifier_parse_fwnode_sensor_common);

>  

>  int v4l2_async_register_subdev_sensor_common(struct v4l2_subdev *sd)

>  {

> @@ -1304,8 +1322,7 @@ int v4l2_async_register_subdev_sensor_common(struct v4l2_subdev *sd)

>  

>         v4l2_async_notifier_init(notifier);

>  

> -       ret = v4l2_async_notifier_parse_fwnode_sensor_common(sd->dev,

> -                                                            notifier);

> +       ret = v4l2_async_notifier_parse_fwnode_sensor(sd->dev, notifier);

>         if (ret < 0)

>                 goto out_cleanup;

>  

> diff --git a/include/media/v4l2-async.h b/include/media/v4l2-async.h

> index d28cbe8142b8..aee28c0e31ac 100644

> --- a/include/media/v4l2-async.h

> +++ b/include/media/v4l2-async.h

> @@ -295,7 +295,7 @@ int v4l2_async_register_subdev(struct v4l2_subdev *sd);

>   *

>   * This function is just like v4l2_async_register_subdev() with the exception

>   * that calling it will also parse firmware interfaces for remote references

> - * using v4l2_async_notifier_parse_fwnode_sensor_common() and registers the

> + * using v4l2_async_notifier_parse_fwnode_sensor() and registers the

>   * async sub-devices. The sub-device is similarly unregistered by calling

>   * v4l2_async_unregister_subdev().

>   *

> diff --git a/include/media/v4l2-fwnode.h b/include/media/v4l2-fwnode.h

> index 80d21ad8d603..7ab033b819eb 100644

> --- a/include/media/v4l2-fwnode.h

> +++ b/include/media/v4l2-fwnode.h

> @@ -510,27 +510,6 @@ v4l2_async_notifier_parse_fwnode_endpoints(struct device *dev,

>                                            size_t asd_struct_size,

>                                            parse_endpoint_func parse_endpoint);

>  

> -/**

> - * v4l2_async_notifier_parse_fwnode_sensor_common - parse common references on

> - *                                            sensors for async sub-devices

> - * @dev: the device node the properties of which are parsed for references

> - * @notifier: the async notifier where the async subdevs will be added

> - *

> - * Parse common sensor properties for remote devices related to the

> - * sensor and set up async sub-devices for them.

> - *

> - * Any notifier populated using this function must be released with a call to

> - * v4l2_async_notifier_release() after it has been unregistered and the async

> - * sub-devices are no longer in use, even in the case the function returned an

> - * error.

> - *

> - * Return: 0 on success

> - *        -ENOMEM if memory allocation failed

> - *        -EINVAL if property parsing failed

> - */

> -int v4l2_async_notifier_parse_fwnode_sensor_common(struct device *dev,

> -                                                  struct v4l2_async_notifier *notifier);

> -

>  /* Helper macros to access the connector links. */

>  

>  /** v4l2_connector_last_link - Helper macro to get the first
diff mbox series

Patch

diff --git a/drivers/media/v4l2-core/v4l2-fwnode.c b/drivers/media/v4l2-core/v4l2-fwnode.c
index 2283ff3b8e1d..9c1b38919491 100644
--- a/drivers/media/v4l2-core/v4l2-fwnode.c
+++ b/drivers/media/v4l2-core/v4l2-fwnode.c
@@ -1259,8 +1259,27 @@  v4l2_fwnode_reference_parse_int_props(struct device *dev,
 	return !fwnode || PTR_ERR(fwnode) == -ENOENT ? 0 : PTR_ERR(fwnode);
 }
 
-int v4l2_async_notifier_parse_fwnode_sensor_common(struct device *dev,
-						   struct v4l2_async_notifier *notifier)
+/**
+ * v4l2_async_notifier_parse_fwnode_sensor - parse common references on
+ *					     sensors for async sub-devices
+ * @dev: the device node the properties of which are parsed for references
+ * @notifier: the async notifier where the async subdevs will be added
+ *
+ * Parse common sensor properties for remote devices related to the
+ * sensor and set up async sub-devices for them.
+ *
+ * Any notifier populated using this function must be released with a call to
+ * v4l2_async_notifier_release() after it has been unregistered and the async
+ * sub-devices are no longer in use, even in the case the function returned an
+ * error.
+ *
+ * Return: 0 on success
+ *	   -ENOMEM if memory allocation failed
+ *	   -EINVAL if property parsing failed
+ */
+static int
+v4l2_async_notifier_parse_fwnode_sensor(struct device *dev,
+					struct v4l2_async_notifier *notifier)
 {
 	static const char * const led_props[] = { "led" };
 	static const struct v4l2_fwnode_int_props props[] = {
@@ -1288,7 +1307,6 @@  int v4l2_async_notifier_parse_fwnode_sensor_common(struct device *dev,
 
 	return 0;
 }
-EXPORT_SYMBOL_GPL(v4l2_async_notifier_parse_fwnode_sensor_common);
 
 int v4l2_async_register_subdev_sensor_common(struct v4l2_subdev *sd)
 {
@@ -1304,8 +1322,7 @@  int v4l2_async_register_subdev_sensor_common(struct v4l2_subdev *sd)
 
 	v4l2_async_notifier_init(notifier);
 
-	ret = v4l2_async_notifier_parse_fwnode_sensor_common(sd->dev,
-							     notifier);
+	ret = v4l2_async_notifier_parse_fwnode_sensor(sd->dev, notifier);
 	if (ret < 0)
 		goto out_cleanup;
 
diff --git a/include/media/v4l2-async.h b/include/media/v4l2-async.h
index d28cbe8142b8..aee28c0e31ac 100644
--- a/include/media/v4l2-async.h
+++ b/include/media/v4l2-async.h
@@ -295,7 +295,7 @@  int v4l2_async_register_subdev(struct v4l2_subdev *sd);
  *
  * This function is just like v4l2_async_register_subdev() with the exception
  * that calling it will also parse firmware interfaces for remote references
- * using v4l2_async_notifier_parse_fwnode_sensor_common() and registers the
+ * using v4l2_async_notifier_parse_fwnode_sensor() and registers the
  * async sub-devices. The sub-device is similarly unregistered by calling
  * v4l2_async_unregister_subdev().
  *
diff --git a/include/media/v4l2-fwnode.h b/include/media/v4l2-fwnode.h
index 80d21ad8d603..7ab033b819eb 100644
--- a/include/media/v4l2-fwnode.h
+++ b/include/media/v4l2-fwnode.h
@@ -510,27 +510,6 @@  v4l2_async_notifier_parse_fwnode_endpoints(struct device *dev,
 					   size_t asd_struct_size,
 					   parse_endpoint_func parse_endpoint);
 
-/**
- * v4l2_async_notifier_parse_fwnode_sensor_common - parse common references on
- *					       sensors for async sub-devices
- * @dev: the device node the properties of which are parsed for references
- * @notifier: the async notifier where the async subdevs will be added
- *
- * Parse common sensor properties for remote devices related to the
- * sensor and set up async sub-devices for them.
- *
- * Any notifier populated using this function must be released with a call to
- * v4l2_async_notifier_release() after it has been unregistered and the async
- * sub-devices are no longer in use, even in the case the function returned an
- * error.
- *
- * Return: 0 on success
- *	   -ENOMEM if memory allocation failed
- *	   -EINVAL if property parsing failed
- */
-int v4l2_async_notifier_parse_fwnode_sensor_common(struct device *dev,
-						   struct v4l2_async_notifier *notifier);
-
 /* Helper macros to access the connector links. */
 
 /** v4l2_connector_last_link - Helper macro to get the first