netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: bnx2x: fix error value sign
@ 2010-11-14 20:08 Vasiliy Kulikov
  2010-11-14 20:26 ` Eilon Greenstein
  2010-11-14 20:29 ` Eric Dumazet
  0 siblings, 2 replies; 5+ messages in thread
From: Vasiliy Kulikov @ 2010-11-14 20:08 UTC (permalink / raw)
  To: kernel-janitors; +Cc: Eilon Greenstein, netdev, linux-kernel

bnx2x_init_one() should return negative value on error.
By mistake it returns ENODEV instead of -ENODEV.

Signed-off-by: Vasiliy Kulikov <segoon@openwall.com>
---
 Compile tested.

 drivers/net/bnx2x/bnx2x_main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/bnx2x/bnx2x_main.c b/drivers/net/bnx2x/bnx2x_main.c
index 4a6f0ea..be52edc 100644
--- a/drivers/net/bnx2x/bnx2x_main.c
+++ b/drivers/net/bnx2x/bnx2x_main.c
@@ -9064,7 +9064,7 @@ static int __devinit bnx2x_init_one(struct pci_dev *pdev,
 	default:
 		pr_err("Unknown board_type (%ld), aborting\n",
 			   ent->driver_data);
-		return ENODEV;
+		return -ENODEV;
 	}
 
 	cid_count += CNIC_CONTEXT_USE;
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-11-17 20:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-14 20:08 [PATCH] net: bnx2x: fix error value sign Vasiliy Kulikov
2010-11-14 20:26 ` Eilon Greenstein
2010-11-14 20:29 ` Eric Dumazet
2010-11-14 20:32   ` Eric Dumazet
2010-11-17 20:23     ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).