dect
/
linux-2.6
Archived
13
0
Fork 0

pstore/inode: Make pstore_fill_super() static

There's no reason to extern it. The patch fixes the annoying sparse
warning:

CHECK   fs/pstore/inode.c
fs/pstore/inode.c:264:5: warning: symbol 'pstore_fill_super' was not
declared. Should it be static?

Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Anton Vorontsov 2012-05-26 06:07:53 -07:00 committed by Greg Kroah-Hartman
parent 93cce04968
commit 364ed2f465
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ fail:
return rc;
}
int pstore_fill_super(struct super_block *sb, void *data, int silent)
static int pstore_fill_super(struct super_block *sb, void *data, int silent)
{
struct inode *inode;