[PATCH 3/5] staging: wilc1000: send_config_pkt: return linux error number

Glen Lee glen.lee at atmel.com
Tue Nov 3 07:21:00 UTC 2015


Use proper linux error number instead of -1.

Signed-off-by: Glen Lee <glen.lee at 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



More information about the devel mailing list