]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - fs/affs/dir.c
Merge tag 'blackfin-for-linus' of http://git.kernel.org/pub/scm/linux/kernel/git...
[karo-tx-linux.git] / fs / affs / dir.c
index cbbda476a8054e5409b843616e1a1b7023e63824..59f07bec92a6c18918b6f28b0b0bc057952ebe9e 100644 (file)
@@ -54,8 +54,8 @@ affs_readdir(struct file *file, struct dir_context *ctx)
        u32                      ino;
        int                      error = 0;
 
-       pr_debug("AFFS: readdir(ino=%lu,f_pos=%lx)\n",
-                inode->i_ino, (unsigned long)ctx->pos);
+       pr_debug("%s(ino=%lu,f_pos=%lx)\n",
+                __func__, inode->i_ino, (unsigned long)ctx->pos);
 
        if (ctx->pos < 2) {
                file->private_data = (void *)0;
@@ -81,7 +81,7 @@ affs_readdir(struct file *file, struct dir_context *ctx)
         */
        ino = (u32)(long)file->private_data;
        if (ino && file->f_version == inode->i_version) {
-               pr_debug("AFFS: readdir() left off=%d\n", ino);
+               pr_debug("readdir() left off=%d\n", ino);
                goto inside;
        }
 
@@ -117,7 +117,7 @@ inside:
 
                        namelen = min(AFFS_TAIL(sb, fh_bh)->name[0], (u8)30);
                        name = AFFS_TAIL(sb, fh_bh)->name + 1;
-                       pr_debug("AFFS: readdir(): dir_emit(\"%.*s\", "
+                       pr_debug("readdir(): dir_emit(\"%.*s\", "
                                 "ino=%u), hash=%d, f_pos=%x\n",
                                 namelen, name, ino, hash_pos, (u32)ctx->pos);