aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fat/misc.c
diff options
context:
space:
mode:
authorAlexey Fisher <bug-track@fisher-privat.net>2011-04-12 08:08:38 -0400
committerOGAWA Hirofumi <hirofumi@mail.parknet.co.jp>2011-04-12 08:12:42 -0400
commit869f58c0cdba3ae6880ab6113617e62672198773 (patch)
treef66f0c256d42f6a853c219bc0e3c74d6db2173eb /fs/fat/misc.c
parent81ac21d34a91e85b029cd86e2ed5eeae8d7c3cd4 (diff)
fat: Replace all printk with fat_msg()
Replace all printk with fat_msg() Signed-off-by: Alexey Fisher <bug-track@fisher-privat.net> Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Diffstat (limited to 'fs/fat/misc.c')
-rw-r--r--fs/fat/misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/fat/misc.c b/fs/fat/misc.c
index 3dcabc1bd8c3..6d93360ca0cc 100644
--- a/fs/fat/misc.c
+++ b/fs/fat/misc.c
@@ -73,15 +73,15 @@ int fat_clusters_flush(struct super_block *sb)
73 73
74 bh = sb_bread(sb, sbi->fsinfo_sector); 74 bh = sb_bread(sb, sbi->fsinfo_sector);
75 if (bh == NULL) { 75 if (bh == NULL) {
76 printk(KERN_ERR "FAT: bread failed in fat_clusters_flush\n"); 76 fat_msg(sb, KERN_ERR, "bread failed in fat_clusters_flush");
77 return -EIO; 77 return -EIO;
78 } 78 }
79 79
80 fsinfo = (struct fat_boot_fsinfo *)bh->b_data; 80 fsinfo = (struct fat_boot_fsinfo *)bh->b_data;
81 /* Sanity check */ 81 /* Sanity check */
82 if (!IS_FSINFO(fsinfo)) { 82 if (!IS_FSINFO(fsinfo)) {
83 printk(KERN_ERR "FAT: Invalid FSINFO signature: " 83 fat_msg(sb, KERN_ERR, "Invalid FSINFO signature: "
84 "0x%08x, 0x%08x (sector = %lu)\n", 84 "0x%08x, 0x%08x (sector = %lu)",
85 le32_to_cpu(fsinfo->signature1), 85 le32_to_cpu(fsinfo->signature1),
86 le32_to_cpu(fsinfo->signature2), 86 le32_to_cpu(fsinfo->signature2),
87 sbi->fsinfo_sector); 87 sbi->fsinfo_sector);