aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomohiro Kusumi <[email protected]>2016-10-11 13:52:28 -0700
committerLinus Torvalds <[email protected]>2016-10-11 15:06:31 -0700
commit4a44c1859ffd9926ba4d47d1b538d119065ec2f5 (patch)
tree6ce7aabdeb25515f37e1bde7e39e088ff52e49dd
parente662145f5c1276d35e8955b3df7a68da306ee498 (diff)
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/[email protected] Signed-off-by: Tomohiro Kusumi <[email protected]> Signed-off-by: Ian Kent <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/autofs4/autofs_i.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/autofs4/autofs_i.h b/fs/autofs4/autofs_i.h
index a439548de785..eb870551a7cf 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 *);