Use proper linux error number instead of -1.

Signed-off-by: Glen Lee <glen....@atmel.com>
---
 drivers/staging/wilc1000/coreconfigurator.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/wilc1000/coreconfigurator.c 
b/drivers/staging/wilc1000/coreconfigurator.c
index 637e8ca..1842f8f 100644
--- a/drivers/staging/wilc1000/coreconfigurator.c
+++ b/drivers/staging/wilc1000/coreconfigurator.c
@@ -600,7 +600,7 @@ s32 send_config_pkt(struct net_device *dev, u8 mode, struct 
wid *wids,
                                               wids[counter].id,
                                               (counter == count - 1),
                                               drv)) {
-                               ret = -1;
+                               ret = -EBUSY;
                                netdev_err(dev,
                                           "[Sendconfigpkt]Get Timed out\n");
                                break;
@@ -625,7 +625,7 @@ s32 send_config_pkt(struct net_device *dev, u8 mode, struct 
wid *wids,
                                               wids[counter].size,
                                               (counter == count - 1),
                                               drv)) {
-                               ret = -1;
+                               ret = -EBUSY;
                                netdev_err(dev,
                                           "[Sendconfigpkt]Set Timed out\n");
                                break;
-- 
1.9.1

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

Reply via email to