From 1aa1581473b58a02404dae55f95b015ee4c86b77 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 20 Jul 2009 11:17:25 -0700 Subject: [PATCH] kclient: drop pr_fmt It doesn't build on older kernels, and all we want is varargs checking anyway. --- src/kernel/ceph_debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/ceph_debug.h b/src/kernel/ceph_debug.h index 4557ea73a2e14..69404ac8dc90b 100644 --- a/src/kernel/ceph_debug.h +++ b/src/kernel/ceph_debug.h @@ -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 -- 2.39.5