From: Tomohiro Kusumi Date: Tue, 11 Oct 2016 20:52:28 +0000 (-0700) Subject: autofs: drop unnecessary extern in autofs_i.h X-Git-Tag: v4.9.8~1156^2~72 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a44c1859ffd9926ba4d47d1b538d119065ec2f5;p=platform%2Fkernel%2Flinux-rpi3.git autofs: drop unnecessary extern in autofs_i.h autofs4_kill_sb() doesn't need to be declared as extern, and no other functions in .h are explicitly declared as extern. Link: http://lkml.kernel.org/r/20160812024739.12352.99354.stgit@pluto.themaw.net Signed-off-by: Tomohiro Kusumi Signed-off-by: Ian Kent Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/autofs4/autofs_i.h b/fs/autofs4/autofs_i.h index a439548..eb87055 100644 --- a/fs/autofs4/autofs_i.h +++ b/fs/autofs4/autofs_i.h @@ -271,4 +271,4 @@ static inline void autofs4_del_expiring(struct dentry *dentry) } } -extern void autofs4_kill_sb(struct super_block *); +void autofs4_kill_sb(struct super_block *);