]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - fs/hfs/bnode.c
hfs/hfsplus: convert printks to pr_<level>
[karo-tx-linux.git] / fs / hfs / bnode.c
index 86939190257550ca9b0056a1d3c2f77c92bcf25f..f3b1a15ccd5930e72896bdbaf3213460c3bb9f34 100644 (file)
@@ -221,7 +221,7 @@ struct hfs_bnode *hfs_bnode_findhash(struct hfs_btree *tree, u32 cnid)
        struct hfs_bnode *node;
 
        if (cnid >= tree->node_count) {
-               printk(KERN_ERR "hfs: request for non-existent node %d in B*Tree\n", cnid);
+               pr_err("request for non-existent node %d in B*Tree\n", cnid);
                return NULL;
        }
 
@@ -244,7 +244,7 @@ static struct hfs_bnode *__hfs_bnode_create(struct hfs_btree *tree, u32 cnid)
        loff_t off;
 
        if (cnid >= tree->node_count) {
-               printk(KERN_ERR "hfs: request for non-existent node %d in B*Tree\n", cnid);
+               pr_err("request for non-existent node %d in B*Tree\n", cnid);
                return NULL;
        }