Staging: hv: remove DPRINT_ENTER macro
[pandora-kernel.git] / drivers / staging / hv / storvsc.c
index 27a276e..7a20685 100644 (file)
@@ -356,8 +356,6 @@ static void StorVscOnIOCompletion(struct hv_device *Device,
        struct hv_storvsc_request *request;
        struct storvsc_device *storDevice;
 
-       DPRINT_ENTER(STORVSC);
-
        storDevice = MustGetStorDevice(Device);
        if (!storDevice) {
                DPRINT_ERR(STORVSC, "unable to get stor device..."
@@ -449,8 +447,6 @@ static void StorVscOnChannelCallback(void *context)
        struct storvsc_request_extension *request;
        int ret;
 
-       DPRINT_ENTER(STORVSC);
-
        /* ASSERT(device); */
 
        storDevice = MustGetStorDevice(device);
@@ -547,8 +543,6 @@ static int StorVscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
        struct storvsc_device_info *deviceInfo;
        int ret = 0;
 
-       DPRINT_ENTER(STORVSC);
-
        deviceInfo = (struct storvsc_device_info *)AdditionalInfo;
        storDevice = AllocStorDevice(Device);
        if (!storDevice) {
@@ -596,8 +590,6 @@ static int StorVscOnDeviceRemove(struct hv_device *Device)
 {
        struct storvsc_device *storDevice;
 
-       DPRINT_ENTER(STORVSC);
-
        DPRINT_INFO(STORVSC, "disabling storage device (%p)...",
                    Device->Extension);
 
@@ -637,8 +629,6 @@ int StorVscOnHostReset(struct hv_device *Device)
        struct vstor_packet *vstorPacket;
        int ret;
 
-       DPRINT_ENTER(STORVSC);
-
        DPRINT_INFO(STORVSC, "resetting host adapter...");
 
        storDevice = GetStorDevice(Device);
@@ -702,8 +692,6 @@ static int StorVscOnIORequest(struct hv_device *Device,
        struct vstor_packet *vstorPacket;
        int ret = 0;
 
-       DPRINT_ENTER(STORVSC);
-
        requestExtension =
                (struct storvsc_request_extension *)Request->Extension;
        vstorPacket = &requestExtension->VStorPacket;
@@ -796,7 +784,6 @@ static int StorVscOnIORequest(struct hv_device *Device,
  */
 static void StorVscOnCleanup(struct hv_driver *Driver)
 {
-       DPRINT_ENTER(STORVSC);
        DPRINT_EXIT(STORVSC);
 }
 
@@ -807,8 +794,6 @@ int StorVscInitialize(struct hv_driver *Driver)
 {
        struct storvsc_driver_object *storDriver;
 
-       DPRINT_ENTER(STORVSC);
-
        storDriver = (struct storvsc_driver_object *)Driver;
 
        DPRINT_DBG(STORVSC, "sizeof(STORVSC_REQUEST)=%zd "