Commit bf2b8fe0 authored by JieunKim's avatar JieunKim Committed by Greg Kroah-Hartman
Browse files

staging: exfat: Replace printk with pr_info



pr_info is preferred to use than printk.
pr_info calls printk with KERN_INFO macros by itself.

Signed-off-by: default avatarJieunKim <jieun.kim4758@gmail.com>
Link: https://lore.kernel.org/r/20200210091421.12335-1-jieun.kim4758@gmail.com


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 26a99c06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -364,7 +364,7 @@ static int ffsMountVol(struct super_block *sb)
	exfat_bdev_open(sb);

	if (p_bd->sector_size < sb->s_blocksize) {
		printk(KERN_INFO "EXFAT: mount failed - sector size %d less than blocksize %ld\n",
		pr_info("EXFAT: mount failed - sector size %d less than blocksize %ld\n",
		       p_bd->sector_size,  sb->s_blocksize);
		ret = -EINVAL;
		goto out;