diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-06 17:36:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-06 19:08:09 -0400 |
commit | d9b4b3195a06e646c357f6108a424569b1a920d9 (patch) | |
tree | af5ecc32516547346949bd4c2d8cfef9688fad04 /fs/coda/cnode.c | |
parent | 817e1d902aca6ab8a0b54691f4fea3ee3aebbe86 (diff) |
fs/coda: replace printk by pr_foo()
No level printk converted to pr_warn or pr_info
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Jan Harkes <jaharkes@cs.cmu.edu>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/coda/cnode.c')
-rw-r--r-- | fs/coda/cnode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/coda/cnode.c b/fs/coda/cnode.c index 911cf30d057d..4bb74b3d3901 100644 --- a/fs/coda/cnode.c +++ b/fs/coda/cnode.c | |||
@@ -101,7 +101,7 @@ struct inode *coda_cnode_make(struct CodaFid *fid, struct super_block *sb) | |||
101 | 101 | ||
102 | inode = coda_iget(sb, fid, &attr); | 102 | inode = coda_iget(sb, fid, &attr); |
103 | if (IS_ERR(inode)) | 103 | if (IS_ERR(inode)) |
104 | printk("coda_cnode_make: coda_iget failed\n"); | 104 | pr_warn("coda_cnode_make: coda_iget failed\n"); |
105 | return inode; | 105 | return inode; |
106 | } | 106 | } |
107 | 107 | ||
@@ -137,7 +137,7 @@ struct inode *coda_fid_to_inode(struct CodaFid *fid, struct super_block *sb) | |||
137 | unsigned long hash = coda_f2i(fid); | 137 | unsigned long hash = coda_f2i(fid); |
138 | 138 | ||
139 | if ( !sb ) { | 139 | if ( !sb ) { |
140 | printk("coda_fid_to_inode: no sb!\n"); | 140 | pr_warn("coda_fid_to_inode: no sb!\n"); |
141 | return NULL; | 141 | return NULL; |
142 | } | 142 | } |
143 | 143 | ||