---
 fs/configfs/mount.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c
index aee0a7e..0815d62 100644
--- a/fs/configfs/mount.c
+++ b/fs/configfs/mount.c
@@ -19,7 +19,7 @@
  * Boston, MA 021110-1307, USA.
  *
  * Based on sysfs:
- *     sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
+ *     sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
  *
  * configfs Copyright (C) 2005 Oracle.  All rights reserved.
  */
@@ -37,9 +37,9 @@
 /* Random magic number */
 #define CONFIGFS_MAGIC 0x62656570
 
-static struct vfsmount *configfs_mount = NULL;
+static struct vfsmount *configfs_mount;
 struct kmem_cache *configfs_dir_cachep;
-static int configfs_mnt_count = 0;
+static int configfs_mnt_count;
 
 static const struct super_operations configfs_ops = {
        .statfs         = simple_statfs,
@@ -82,7 +82,7 @@ static int configfs_fill_super(struct super_block *sb, void 
*data, int silent)
        if (inode) {
                inode->i_op = &configfs_root_inode_operations;
                inode->i_fop = &configfs_dir_operations;
-               /* directory inodes start off with i_nlink == 2 (for "." entry) 
*/
+               /* directory inodes start off with i_nlink == 2 (for the ".") */
                inc_nlink(inode);
        } else {
                pr_debug("configfs: could not get root inode\n");
@@ -91,7 +91,7 @@ static int configfs_fill_super(struct super_block *sb, void 
*data, int silent)
 
        root = d_make_root(inode);
        if (!root) {
-               pr_debug("%s: could not get root dentry!\n",__func__);
+               pr_debug("%s: could not get root dentry!\n", __func__);
                return -ENOMEM;
        }
        config_group_init(&configfs_root_group);
@@ -154,7 +154,7 @@ static int __init configfs_init(void)
 
        return 0;
 out4:
-       printk(KERN_ERR "configfs: Unable to register filesystem!\n");
+       pr_err("configfs: Unable to register filesystem!\n");
        configfs_inode_exit();
 out3:
        kobject_put(config_kobj);
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to