summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/hv/logging.h')
-rw-r--r--drivers/staging/hv/logging.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/staging/hv/logging.h b/drivers/staging/hv/logging.h
index ad4cfcfb7b11..090cda7d027e 100644
--- a/drivers/staging/hv/logging.h
+++ b/drivers/staging/hv/logging.h
@@ -93,19 +93,12 @@ extern unsigned int vmbus_loglevel;
} while (0)
#ifdef DEBUG
-#define DPRINT_ENTER(mod) do {\
- if ((mod & (HIWORD(vmbus_loglevel))) && \
- (DEBUG_LVL_ENTEREXIT <= LOWORD(vmbus_loglevel))) \
- printk(KERN_DEBUG "["#mod"]: %s() enter\n", __func__);\
- } while (0)
-
#define DPRINT_EXIT(mod) do {\
if ((mod & (HIWORD(vmbus_loglevel))) && \
(DEBUG_LVL_ENTEREXIT <= LOWORD(vmbus_loglevel))) \
printk(KERN_DEBUG "["#mod"]: %s() exit\n", __func__);\
} while (0)
#else
-#define DPRINT_ENTER(mod)
#define DPRINT_EXIT(mod)
#endif