Add space which is required after ',' to follow linux coding style. This
patch fixes the checkpatch issue.
Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        err = 0;
        replace_fops(file, new_fops);
        if (file->f_op->open)
-               err = file->f_op->open(inode,file);
+               err = file->f_op->open(inode, file);
 fail:
        mutex_unlock(&misc_mtx);
        return err;
                goto fail_remove;
 
        err = -EIO;
-       if (register_chrdev(MISC_MAJOR,"misc",&misc_fops))
+       if (register_chrdev(MISC_MAJOR, "misc", &misc_fops))
                goto fail_printk;
        misc_class->devnode = misc_devnode;
        return 0;