Cleanup some error codes in vmbus_drv.c

Signed-off-by: K. Y. Srinivasan <[email protected]>
Signed-off-by: Haiyang Zhang <[email protected]>
Signed-off-by: Abhishek Kane <[email protected]>
---
 drivers/staging/hv/vmbus_drv.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/hv/vmbus_drv.c b/drivers/staging/hv/vmbus_drv.c
index 17692ce..a3c99f1 100644
--- a/drivers/staging/hv/vmbus_drv.c
+++ b/drivers/staging/hv/vmbus_drv.c
@@ -329,7 +329,7 @@ static int vmbus_probe(struct device *child_device)
        } else {
                pr_err("probe not set for driver %s\n",
                       dev_name(child_device));
-               ret = -1;
+               ret = -ENODEV;
        }
        return ret;
 }
@@ -352,7 +352,7 @@ static int vmbus_remove(struct device *child_device)
                } else {
                        pr_err("remove not set for driver %s\n",
                                dev_name(child_device));
-                       ret = -1;
+                       ret = -ENODEV;
                }
        }
 
-- 
1.7.4.1

_______________________________________________
Virtualization mailing list
[email protected]
https://lists.linux-foundation.org/mailman/listinfo/virtualization

Reply via email to