diff options
author | Nathan Lynch <nathanl@linux.ibm.com> | 2021-10-14 12:30:23 -0500 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2021-10-20 13:37:25 -0500 |
commit | 6effc8857b24350cb7534cb1029ade9a8573e04a (patch) | |
tree | 9a45cea34da5e5ac3cb5fa619855f5658d47c13f /drivers/of/of_private.h | |
parent | 7688fa1025cda1463b091bf2212f2afa68ceb711 (diff) | |
download | lwn-6effc8857b24350cb7534cb1029ade9a8573e04a.tar.gz lwn-6effc8857b24350cb7534cb1029ade9a8573e04a.zip |
of: kobj: make of_node_is_(initialized|attached) parameters const
of_node_is_initialized() and of_node_is_attached() don't modify the node
objects passed to them, so those parameters should be const.
Signed-off-by: Nathan Lynch <nathanl@linux.ibm.com>
Link: https://lore.kernel.org/r/20211014173023.2117799-1-nathanl@linux.ibm.com
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'drivers/of/of_private.h')
-rw-r--r-- | drivers/of/of_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/of/of_private.h b/drivers/of/of_private.h index 75e67b8bb826..9324483397f6 100644 --- a/drivers/of/of_private.h +++ b/drivers/of/of_private.h @@ -60,7 +60,7 @@ static inline int of_property_notify(int action, struct device_node *np, #endif /* CONFIG_OF_DYNAMIC */ #if defined(CONFIG_OF_KOBJ) -int of_node_is_attached(struct device_node *node); +int of_node_is_attached(const struct device_node *node); int __of_add_property_sysfs(struct device_node *np, struct property *pp); void __of_remove_property_sysfs(struct device_node *np, struct property *prop); void __of_update_property_sysfs(struct device_node *np, struct property *newprop, |