summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/vmbus.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 15:14:04 -0700
committerGreg Kroah-Hartman <gregkh@suse.de>2010-07-22 15:14:04 -0700
commit83c720ea395c4ee725e1035cbcda809794b46091 (patch)
treeba683a1eef41cfca86286a2d81d49068ac12d478 /drivers/staging/hv/vmbus.c
parent2acadc269fa1957438e64684460c27a33e6d2b08 (diff)
downloadlinux-stable-83c720ea395c4ee725e1035cbcda809794b46091.tar.gz
linux-stable-83c720ea395c4ee725e1035cbcda809794b46091.tar.bz2
linux-stable-83c720ea395c4ee725e1035cbcda809794b46091.zip
Staging: hv: remove DPRINT_EXIT macro
No need for it, use the built-in kernel function tracing instead if you really need something like this. Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/vmbus.c')
-rw-r--r--drivers/staging/hv/vmbus.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/staging/hv/vmbus.c b/drivers/staging/hv/vmbus.c
index f389c3c290fb..ca1e18a62006 100644
--- a/drivers/staging/hv/vmbus.c
+++ b/drivers/staging/hv/vmbus.c
@@ -58,7 +58,6 @@ static struct hv_device *gDevice; /* vmbus root device */
static void VmbusGetChannelOffers(void)
{
VmbusChannelRequestOffers();
- DPRINT_EXIT(VMBUS);
}
/*
@@ -133,8 +132,6 @@ static int VmbusOnDeviceAdd(struct hv_device *dev, void *AdditionalInfo)
ret = VmbusConnect();
/* VmbusSendEvent(device->localPortId+1); */
- DPRINT_EXIT(VMBUS);
-
return ret;
}
@@ -148,8 +145,6 @@ static int VmbusOnDeviceRemove(struct hv_device *dev)
VmbusChannelReleaseUnattachedChannels();
VmbusDisconnect();
on_each_cpu(HvSynicCleanup, NULL, 1);
- DPRINT_EXIT(VMBUS);
-
return ret;
}
@@ -161,7 +156,6 @@ static void VmbusOnCleanup(struct hv_driver *drv)
/* struct vmbus_driver *driver = (struct vmbus_driver *)drv; */
HvCleanup();
- DPRINT_EXIT(VMBUS);
}
/*
@@ -252,7 +246,6 @@ static int VmbusOnISR(struct hv_driver *drv)
ret |= 0x2;
}
- DPRINT_EXIT(VMBUS);
return ret;
}
@@ -296,7 +289,5 @@ int VmbusInitialize(struct hv_driver *drv)
ret);
gDriver = drv;
- DPRINT_EXIT(VMBUS);
-
return ret;
}