From: H Hartley Sweeten Date: Fri, 23 Mar 2012 22:01:53 +0000 (-0700) Subject: fs/notify/notification.c: make subsys_initcall function static X-Git-Tag: v3.12-rc1~3596^2~132 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9710a78e55fe29fa2d2f1a9cbd1d399797585fd9;p=kernel%2Fkernel-generic.git fs/notify/notification.c: make subsys_initcall function static Signed-off-by: H Hartley Sweeten Cc: Eric Dumazet Cc: Mike Frysinger Cc: Arun Sharma Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/notify/notification.c b/fs/notify/notification.c index ee18815..c887b13 100644 --- a/fs/notify/notification.c +++ b/fs/notify/notification.c @@ -447,7 +447,7 @@ struct fsnotify_event *fsnotify_create_event(struct inode *to_tell, __u32 mask, return event; } -__init int fsnotify_notification_init(void) +static __init int fsnotify_notification_init(void) { fsnotify_event_cachep = KMEM_CACHE(fsnotify_event, SLAB_PANIC); fsnotify_event_holder_cachep = KMEM_CACHE(fsnotify_event_holder, SLAB_PANIC); @@ -461,4 +461,3 @@ __init int fsnotify_notification_init(void) return 0; } subsys_initcall(fsnotify_notification_init); -