]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
kclient: drop pr_fmt
authorSage Weil <sage@newdream.net>
Mon, 20 Jul 2009 18:17:25 +0000 (11:17 -0700)
committerSage Weil <sage@newdream.net>
Mon, 20 Jul 2009 18:17:25 +0000 (11:17 -0700)
It doesn't build on older kernels, and all we want is varargs
checking anyway.

src/kernel/ceph_debug.h

index 4557ea73a2e1488d311d159a5584066fdf48dca6..69404ac8dc90b4012c2c88ef79be1a43045caba2 100644 (file)
@@ -17,7 +17,7 @@ extern const char *ceph_file_part(const char *s, int len);
  * compiler warnings.
  */
 # define dout(fmt, ...)        do {                                            \
-               if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__);   \
+               if (0) printk(KERN_DEBUG fmt, ##__VA_ARGS__);   \
        } while (0)
 #endif