Re: [PATCH] kobject: make kset_get_ownership() 'static'

2019-01-09 Thread Rafael J. Wysocki
On Wed, Jan 9, 2019 at 8:38 AM Eric Biggers  wrote:
>
> From: Eric Biggers 
>
> kset_get_ownership() is only used in lib/kobject.c, so make it 'static'.
>
> Signed-off-by: Eric Biggers 

Reviewed-by: Rafael J. Wysocki 

> ---
>  lib/kobject.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/kobject.c b/lib/kobject.c
> index b72e00fd7d09e..aa89edcd2b63a 100644
> --- a/lib/kobject.c
> +++ b/lib/kobject.c
> @@ -887,7 +887,7 @@ static void kset_release(struct kobject *kobj)
> kfree(kset);
>  }
>
> -void kset_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
> +static void kset_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t 
> *gid)
>  {
> if (kobj->parent)
> kobject_get_ownership(kobj->parent, uid, gid);
> --
> 2.20.1
>


[PATCH] kobject: make kset_get_ownership() 'static'

2019-01-08 Thread Eric Biggers
From: Eric Biggers 

kset_get_ownership() is only used in lib/kobject.c, so make it 'static'.

Signed-off-by: Eric Biggers 
---
 lib/kobject.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/kobject.c b/lib/kobject.c
index b72e00fd7d09e..aa89edcd2b63a 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -887,7 +887,7 @@ static void kset_release(struct kobject *kobj)
kfree(kset);
 }
 
-void kset_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
+static void kset_get_ownership(struct kobject *kobj, kuid_t *uid, kgid_t *gid)
 {
if (kobj->parent)
kobject_get_ownership(kobj->parent, uid, gid);
-- 
2.20.1