Get rid of some DPRINT_ERR() calls.

Signed-off-by: K. Y. Srinivasan <k...@microsoft.com>
Signed-off-by: Haiyang Zhang <haiya...@microsoft.com>
Signed-off-by: Hank Janssen <hjans...@microsoft.com>
---
 drivers/staging/hv/blkvsc_drv.c |    9 +++------
 1 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/hv/blkvsc_drv.c b/drivers/staging/hv/blkvsc_drv.c
index 03aebfc..aff6356 100644
--- a/drivers/staging/hv/blkvsc_drv.c
+++ b/drivers/staging/hv/blkvsc_drv.c
@@ -17,6 +17,8 @@
  * Authors:
  *   Haiyang Zhang <haiya...@microsoft.com>
  *   Hank Janssen  <hjans...@microsoft.com>
+ *
+ * 4/3/2011: K. Y. Srinivasan - Significant restructuring and cleanup.
  */
 #include <linux/init.h>
 #include <linux/module.h>
@@ -966,7 +968,6 @@ static int blkvsc_probe(struct device *device)
 
 
        if (!storvsc_drv_obj->base.dev_add) {
-               DPRINT_ERR(BLKVSC_DRV, "OnDeviceAdd() not set");
                ret = -1;
                goto Cleanup;
        }
@@ -994,10 +995,8 @@ static int blkvsc_probe(struct device *device)
 
        /* Call to the vsc driver to add the device */
        ret = storvsc_drv_obj->base.dev_add(device_obj, &device_info);
-       if (ret != 0) {
-               DPRINT_ERR(BLKVSC_DRV, "unable to add blkvsc device");
+       if (ret != 0)
                goto Cleanup;
-       }
 
        blkdev->device_ctx = device_obj;
        /* this identified the device 0 or 1 */
@@ -1039,7 +1038,6 @@ static int blkvsc_probe(struct device *device)
                        ide1_registered = 1;
                }
        } else {
-               DPRINT_ERR(BLKVSC_DRV, "invalid pathid");
                ret = -1;
                goto Cleanup;
        }
@@ -1048,7 +1046,6 @@ static int blkvsc_probe(struct device *device)
 
        blkdev->gd = alloc_disk(BLKVSC_MINORS);
        if (!blkdev->gd) {
-               DPRINT_ERR(BLKVSC_DRV, "register_blkdev() failed! ret %d", ret);
                ret = -1;
                goto Cleanup;
        }
-- 
1.7.4.1

_______________________________________________
devel mailing list
devel@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to