mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
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: JieunKim <jieun.kim4758@gmail.com> Link: https://lore.kernel.org/r/20200210091421.12335-1-jieun.kim4758@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
26a99c06b6
commit
bf2b8fe0d7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue