Staging: hv: remove last user of DPRINT() macro

This also removed the unused function hv_dump_ring_info().

Cc: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Greg Kroah-Hartman 2011-10-11 09:25:14 -06:00
parent d181daa06d
commit 1a2643012f
3 changed files with 0 additions and 41 deletions

View file

@ -722,17 +722,9 @@ extern void vmbus_ontimer(unsigned long data);
/* Logging Level */
#define INFO_LVL 6
#define DEBUG_RING_LVL 9
extern unsigned int vmbus_loglevel;
#define DPRINT(mod, lvl, fmt, args...) do {\
if ((mod & (HIWORD(vmbus_loglevel))) && \
(lvl <= LOWORD(vmbus_loglevel))) \
printk(KERN_DEBUG #mod": %s() " fmt "\n", __func__, ## args);\
} while (0)
struct hv_driver;
struct hv_device;