diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-04 16:06:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 16:53:55 -0700 |
commit | bdbeacdea24bad95bb72b6712fd9f716206c3142 (patch) | |
tree | 61b70d90a387d0ae457d823bdc4cf940fe244cda /fs | |
parent | e72db989e1c01fde28aabf7fd29faeaa08538e24 (diff) | |
download | linux-stable-bdbeacdea24bad95bb72b6712fd9f716206c3142.tar.gz linux-stable-bdbeacdea24bad95bb72b6712fd9f716206c3142.tar.bz2 linux-stable-bdbeacdea24bad95bb72b6712fd9f716206c3142.zip |
fs/9p/v9fs.c: add __init to v9fs_sysfs_init
v9fs_sysfs_init is only called by __init init_v9fs
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Eric Van Hensbergen <ericvh@gmail.com>
Cc: Ron Minnich <rminnich@sandia.gov>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/9p/v9fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/9p/v9fs.c b/fs/9p/v9fs.c index 14da82564f4e..6894b085f0ee 100644 --- a/fs/9p/v9fs.c +++ b/fs/9p/v9fs.c @@ -537,7 +537,7 @@ static struct attribute_group v9fs_attr_group = { * */ -static int v9fs_sysfs_init(void) +static int __init v9fs_sysfs_init(void) { v9fs_kobj = kobject_create_and_add("9p", fs_kobj); if (!v9fs_kobj) |