diff options
author | Gabriel Somlo <somlo@cmu.edu> | 2016-01-28 09:23:12 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-02-09 17:36:34 -0800 |
commit | 2fe829aca9d7bed5fd6b49c6a1452e5e486b6cc3 (patch) | |
tree | 6982fab594c1af6a43c7321a904817ef7fc87e51 /lib/kobject.c | |
parent | 371fd7a2c438a56e00c18a83178555a7918329a2 (diff) | |
download | linux-2fe829aca9d7bed5fd6b49c6a1452e5e486b6cc3.tar.gz linux-2fe829aca9d7bed5fd6b49c6a1452e5e486b6cc3.tar.bz2 linux-2fe829aca9d7bed5fd6b49c6a1452e5e486b6cc3.zip |
kobject: export kset_find_obj() for module use
Signed-off-by: Gabriel Somlo <somlo@cmu.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'lib/kobject.c')
-rw-r--r-- | lib/kobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/kobject.c b/lib/kobject.c index 7cbccd2b4c72..445dcaeb0f56 100644 --- a/lib/kobject.c +++ b/lib/kobject.c @@ -861,6 +861,7 @@ struct kobject *kset_find_obj(struct kset *kset, const char *name) spin_unlock(&kset->list_lock); return ret; } +EXPORT_SYMBOL_GPL(kset_find_obj); static void kset_release(struct kobject *kobj) { |