From 2b331d6f446e3b74d1d38fb49de7f5945131b897 Mon Sep 17 00:00:00 2001 From: t_jeang Date: Tue, 6 Jan 2009 12:06:03 +0000 Subject: [PATCH] imported patch quiet-vfat --- fs/fat/inode.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/fat/inode.c b/fs/fat/inode.c index bb3bee03..d9be70d2 100644 --- a/fs/fat/inode.c +++ b/fs/fat/inode.c @@ -1186,20 +1186,20 @@ int fat_fill_super(struct super_block *sb, void *data, int silent, sb_min_blocksize(sb, 512); bh = sb_bread(sb, 0); if (bh == NULL) { - printk(KERN_ERR "FAT: unable to read boot sector\n"); + printk(KERN_NOTICE "FAT: unable to read boot sector\n"); goto out_fail; } b = (struct fat_boot_sector *) bh->b_data; if (!b->reserved) { if (!silent) - printk(KERN_ERR "FAT: bogus number of reserved sectors\n"); + printk(KERN_NOTICE "FAT: bogus number of reserved sectors\n"); brelse(bh); goto out_invalid; } if (!b->fats) { if (!silent) - printk(KERN_ERR "FAT: bogus number of FAT structure\n"); + printk(KERN_NOTICE "FAT: bogus number of FAT structure\n"); brelse(bh); goto out_invalid; } -- 2.39.5