lkml.org 
[lkml]   [2019]   [Aug]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v3 02/10] software node: Make argument to to_software_node const
On Thu, Aug 29, 2019 at 01:10:35PM +0300, Sakari Ailus wrote:
> to_software_node() does not need to modify the fwnode_handle it operates
> on; therefore make it const. This allows passing a const fwnode_handle to
> to_software_node().
>
> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>

OK by me.

Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com

> ---
> drivers/base/swnode.c | 4 ++--
> include/linux/property.h | 3 ++-
> 2 files changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/base/swnode.c b/drivers/base/swnode.c
> index a7cb41812cfda..951e7efd47c23 100644
> --- a/drivers/base/swnode.c
> +++ b/drivers/base/swnode.c
> @@ -71,9 +71,9 @@ software_node_to_swnode(const struct software_node *node)
> return swnode;
> }
>
> -const struct software_node *to_software_node(struct fwnode_handle *fwnode)
> +const struct software_node *to_software_node(const struct fwnode_handle *fwnode)
> {
> - struct swnode *swnode = to_swnode(fwnode);
> + const struct swnode *swnode = to_swnode(fwnode);
>
> return swnode ? swnode->node : NULL;
> }
> diff --git a/include/linux/property.h b/include/linux/property.h
> index 5a910ad795910..421c76e53708d 100644
> --- a/include/linux/property.h
> +++ b/include/linux/property.h
> @@ -418,7 +418,8 @@ struct software_node {
> };
>
> bool is_software_node(const struct fwnode_handle *fwnode);
> -const struct software_node *to_software_node(struct fwnode_handle *fwnode);
> +const struct software_node *
> +to_software_node(const struct fwnode_handle *fwnode);
> struct fwnode_handle *software_node_fwnode(const struct software_node *node);
>
> int software_node_register_nodes(const struct software_node *nodes);
> --
> 2.20.1

thanks,

--
heikki

\
 
 \ /
  Last update: 2019-08-30 14:29    [W:0.324 / U:0.284 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site