diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2002-04-09 12:14:34 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-07-30 14:25:12 -0700 |
commit | ff2ee8cf30199bb625706a43d9cc3bd1ff5ebe42 (patch) | |
tree | c81ffd4887ed7c856596b563e9371ab809383a53 /include/linux | |
parent | cd030c4cb3ee0cd4f0589a5f723d358cca1f7a9a (diff) | |
download | op-kernel-dev-ff2ee8cf30199bb625706a43d9cc3bd1ff5ebe42.zip op-kernel-dev-ff2ee8cf30199bb625706a43d9cc3bd1ff5ebe42.tar.gz |
kobject: put kobject_actions in kobject.h
This prevents the extern declaration in the driver core.
Cc: Kay Sievers <kay.sievers@vrfy.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/kobject.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/kobject.h b/include/linux/kobject.h index aa2fe22..49a08f8 100644 --- a/include/linux/kobject.h +++ b/include/linux/kobject.h @@ -56,6 +56,9 @@ enum kobject_action { KOBJ_MAX }; +/* The list of strings defining the valid kobject actions as specified above */ +extern const char *kobject_actions[]; + struct kobject { const char * k_name; char name[KOBJ_NAME_LEN]; |