Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
3750eee7
Commit
3750eee7
authored
Jan 13, 2003
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kobject: export kset_find_obj.
From Louis Zhang.
parent
eef4e251
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
include/linux/kobject.h
include/linux/kobject.h
+1
-1
lib/kobject.c
lib/kobject.c
+3
-1
No files found.
include/linux/kobject.h
View file @
3750eee7
...
...
@@ -87,7 +87,7 @@ static inline void kset_put(struct kset * k)
}
extern
struct
kobject
*
kset_find_obj
(
struct
kset
*
,
char
*
);
extern
struct
kobject
*
kset_find_obj
(
struct
kset
*
,
c
onst
c
har
*
);
struct
subsystem
{
...
...
lib/kobject.c
View file @
3750eee7
...
...
@@ -295,7 +295,7 @@ void kset_unregister(struct kset * k)
* looking for a matching kobject. Return object if found.
*/
struct
kobject
*
kset_find_obj
(
struct
kset
*
kset
,
char
*
name
)
struct
kobject
*
kset_find_obj
(
struct
kset
*
kset
,
c
onst
c
har
*
name
)
{
struct
list_head
*
entry
;
struct
kobject
*
ret
=
NULL
;
...
...
@@ -387,6 +387,8 @@ EXPORT_SYMBOL(kobject_unregister);
EXPORT_SYMBOL
(
kobject_get
);
EXPORT_SYMBOL
(
kobject_put
);
EXPORT_SYMBOL
(
kset_find_obj
);
EXPORT_SYMBOL
(
subsystem_init
);
EXPORT_SYMBOL
(
subsystem_register
);
EXPORT_SYMBOL
(
subsystem_unregister
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment