From: Rob Herring (Arm) Date: Thu, 10 Oct 2024 16:27:19 +0000 (-0500) Subject: of: Constify safe_name() kobject arg X-Git-Tag: v6.13-rc1~151^2~23 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3539089bcc86806d5705f094f46b3dbd61606961;p=thirdparty%2Fkernel%2Flinux.git of: Constify safe_name() kobject arg The kobject is not modified by safe_name() function, so make it const. Reviewed-by: Krzysztof Kozlowski Link: https://lore.kernel.org/r/20241010-dt-const-v1-6-87a51f558425@kernel.org Signed-off-by: Rob Herring (Arm) --- diff --git a/drivers/of/kobj.c b/drivers/of/kobj.c index aeb1709d4e85f..cab9b169dc67f 100644 --- a/drivers/of/kobj.c +++ b/drivers/of/kobj.c @@ -37,7 +37,7 @@ static ssize_t of_node_property_read(struct file *filp, struct kobject *kobj, } /* always return newly allocated name, caller must free after use */ -static const char *safe_name(struct kobject *kobj, const char *orig_name) +static const char *safe_name(const struct kobject *kobj, const char *orig_name) { const char *name = orig_name; struct kernfs_node *kn;