aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/hyperv.h
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2011-10-11 11:25:14 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-10-11 11:51:21 -0400
commit1a2643012fa2262e823b7f11d9732b7fea4c25ce (patch)
treeb194f551ccc018ada709b89a66d1e27ae11fe08d /include/linux/hyperv.h
parentd181daa06dd72fa88652b1d8bf723570a9fc55ea (diff)
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>
Diffstat (limited to 'include/linux/hyperv.h')
-rw-r--r--include/linux/hyperv.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h
index 097d6dbe685a..4fa32ec43aa4 100644
--- a/include/linux/hyperv.h
+++ b/include/linux/hyperv.h
@@ -722,17 +722,9 @@ extern void vmbus_ontimer(unsigned long data);
722 722
723/* Logging Level */ 723/* Logging Level */
724#define INFO_LVL 6 724#define INFO_LVL 6
725#define DEBUG_RING_LVL 9
726 725
727extern unsigned int vmbus_loglevel; 726extern unsigned int vmbus_loglevel;
728 727
729#define DPRINT(mod, lvl, fmt, args...) do {\
730 if ((mod & (HIWORD(vmbus_loglevel))) && \
731 (lvl <= LOWORD(vmbus_loglevel))) \
732 printk(KERN_DEBUG #mod": %s() " fmt "\n", __func__, ## args);\
733 } while (0)
734
735
736struct hv_driver; 728struct hv_driver;
737struct hv_device; 729struct hv_device;
738 730