aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sysfs.h
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-08-15 01:43:23 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2006-09-26 00:08:39 -0400
commitf20a9ead0d005fbeeae3fc21a96f9bf197ac1c1c (patch)
treeb8fb72701b5917d03b6fe122a1719e1cd608b4d9 /include/linux/sysfs.h
parentf86db396ff455ed586751d21816a1ebd431264e5 (diff)
sysfs: add proper sysfs_init() prototype
Don't be crufty. Mark it __must_check too. Cc: "Randy.Dunlap" <rdunlap@xenotime.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/sysfs.h')
-rw-r--r--include/linux/sysfs.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/sysfs.h b/include/linux/sysfs.h
index 02ad790921fd..6d5c43d31dec 100644
--- a/include/linux/sysfs.h
+++ b/include/linux/sysfs.h
@@ -123,6 +123,8 @@ int __must_check sysfs_create_group(struct kobject *,
123void sysfs_remove_group(struct kobject *, const struct attribute_group *); 123void sysfs_remove_group(struct kobject *, const struct attribute_group *);
124void sysfs_notify(struct kobject * k, char *dir, char *attr); 124void sysfs_notify(struct kobject * k, char *dir, char *attr);
125 125
126extern int __must_check sysfs_init(void);
127
126#else /* CONFIG_SYSFS */ 128#else /* CONFIG_SYSFS */
127 129
128static inline int sysfs_create_dir(struct kobject * k) 130static inline int sysfs_create_dir(struct kobject * k)
@@ -194,6 +196,11 @@ static inline void sysfs_notify(struct kobject * k, char *dir, char *attr)
194{ 196{
195} 197}
196 198
199static inline int __must_check sysfs_init(void)
200{
201 return 0;
202}
203
197#endif /* CONFIG_SYSFS */ 204#endif /* CONFIG_SYSFS */
198 205
199#endif /* _SYSFS_H_ */ 206#endif /* _SYSFS_H_ */