From: Adrian Bunk Date: Mon, 20 Nov 2006 02:24:00 +0000 (+0100) Subject: configfs: make configfs_dirent_exists() static X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=58d206c2fa5cc0b35bf3ca48324d7633aa7d0412;p=linux-beck.git configfs: make configfs_dirent_exists() static This patch makes the needlessly global configfs_dirent_exists() static. Signed-off-by: Adrian Bunk Signed-off-by: Joel Becker Signed-off-by: Mark Fasheh --- diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c index 452cfd1e785f..c398861f78a5 100644 --- a/fs/configfs/dir.c +++ b/fs/configfs/dir.c @@ -93,8 +93,8 @@ static struct configfs_dirent *configfs_new_dirent(struct configfs_dirent * pare * * called with parent inode's i_mutex held */ -int configfs_dirent_exists(struct configfs_dirent *parent_sd, - const unsigned char *new) +static int configfs_dirent_exists(struct configfs_dirent *parent_sd, + const unsigned char *new) { struct configfs_dirent * sd;