diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-04 16:05:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 16:53:53 -0700 |
commit | 1d88aa441f25811a55c0ed688add108c0a45613e (patch) | |
tree | 6982d2fe21ebe8e960db34d90911bdb602a42502 /fs/configfs/mount.c | |
parent | c6686931335757c2b348fc9a74ff564d8bd10f0a (diff) | |
download | blackbird-op-linux-1d88aa441f25811a55c0ed688add108c0a45613e.tar.gz blackbird-op-linux-1d88aa441f25811a55c0ed688add108c0a45613e.zip |
fs/configfs: use pr_fmt
Add pr_fmt based on module name.
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Joel Becker <jlbec@evilplan.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/configfs/mount.c')
-rw-r--r-- | fs/configfs/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c index af08de0271fe..f6c285833390 100644 --- a/fs/configfs/mount.c +++ b/fs/configfs/mount.c @@ -85,7 +85,7 @@ static int configfs_fill_super(struct super_block *sb, void *data, int silent) /* directory inodes start off with i_nlink == 2 (for "." entry) */ inc_nlink(inode); } else { - pr_debug("configfs: could not get root inode\n"); + pr_debug("could not get root inode\n"); return -ENOMEM; } @@ -155,7 +155,7 @@ static int __init configfs_init(void) return 0; out4: - pr_err("configfs: Unable to register filesystem!\n"); + pr_err("Unable to register filesystem!\n"); configfs_inode_exit(); out3: kobject_put(config_kobj); |