diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2014-08-27 16:49:44 +0300 |
---|---|---|
committer | Steve French <steve.french@primarydata.com> | 2014-12-07 22:48:07 -0600 |
commit | 0b456f04bcdf5b1151136adaada158bfc26f1be7 (patch) | |
tree | c9ba14522dc965b4649c64fed7dec7cf77dcdb1e /fs/cifs/cifs_debug.h | |
parent | 55d83e0dbb3ed91e05b11ef32afb30acfbf8ba45 (diff) | |
download | blackbird-op-linux-0b456f04bcdf5b1151136adaada158bfc26f1be7.tar.gz blackbird-op-linux-0b456f04bcdf5b1151136adaada158bfc26f1be7.zip |
cifs: convert printk(LEVEL...) to pr_<level>
The useful macros embed message level in the name. Thus, it cleans up the code
a bit. In cases when it was plain printk() the conversion was done to info
level.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Steve French <steve.french@primarydata.com>
Diffstat (limited to 'fs/cifs/cifs_debug.h')
-rw-r--r-- | fs/cifs/cifs_debug.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/cifs/cifs_debug.h b/fs/cifs/cifs_debug.h index c99b40fb609b..f40fbaca1b2a 100644 --- a/fs/cifs/cifs_debug.h +++ b/fs/cifs/cifs_debug.h @@ -53,13 +53,12 @@ __printf(1, 2) void cifs_vfs_err(const char *fmt, ...); do { \ if (type == FYI) { \ if (cifsFYI & CIFS_INFO) { \ - printk(KERN_DEBUG "%s: " fmt, \ - __FILE__, ##__VA_ARGS__); \ + pr_debug("%s: " fmt, __FILE__, ##__VA_ARGS__); \ } \ } else if (type == VFS) { \ cifs_vfs_err(fmt, ##__VA_ARGS__); \ } else if (type == NOISY && type != 0) { \ - printk(KERN_DEBUG fmt, ##__VA_ARGS__); \ + pr_debug(fmt, ##__VA_ARGS__); \ } \ } while (0) @@ -71,7 +70,7 @@ do { \ #define cifs_dbg(type, fmt, ...) \ do { \ if (0) \ - printk(KERN_DEBUG fmt, ##__VA_ARGS__); \ + pr_debug(fmt, ##__VA_ARGS__); \ } while (0) #endif |