diff options
author | Joe Perches <joe@perches.com> | 2012-11-29 23:37:18 +0400 |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2012-12-05 23:27:31 +0400 |
commit | 176c9b3939d22bb1177eb15010e600bc59a1b0b5 (patch) | |
tree | 39b345115a65788ecde1f9fe515f8e8807cbfb08 /fs/cifs/cifs_debug.h | |
parent | 6ee9542a8701a906dbe5141bf1e1ad395d957222 (diff) | |
download | linux-176c9b3939d22bb1177eb15010e600bc59a1b0b5.tar.xz |
cifs: Remove unused cEVENT macro
It uses an undefined KERN_EVENT and is itself unused.
Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Signed-off-by: Steve French <smfrench@gmail.com>
Diffstat (limited to 'fs/cifs/cifs_debug.h')
-rw-r--r-- | fs/cifs/cifs_debug.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/fs/cifs/cifs_debug.h b/fs/cifs/cifs_debug.h index c0c68bb492d7..b0fc344eb857 100644 --- a/fs/cifs/cifs_debug.h +++ b/fs/cifs/cifs_debug.h @@ -63,12 +63,6 @@ do { \ /* debug event message: */ extern int cifsERROR; -#define cEVENT(fmt, arg...) \ -do { \ - if (cifsERROR) \ - printk(KERN_EVENT "%s: " fmt "\n", __FILE__, ##arg); \ -} while (0) - /* error event message: e.g., i/o error */ #define cifserror(fmt, arg...) \ do { \ @@ -88,7 +82,6 @@ do { \ */ #else /* _CIFS_DEBUG */ #define cERROR(set, fmt, arg...) -#define cEVENT(fmt, arg...) #define cFYI(set, fmt, arg...) #define cifserror(fmt, arg...) #endif /* _CIFS_DEBUG */ |