diff options
author | Eilon Greenstein <eilong@broadcom.com> | 2009-02-12 08:37:21 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-16 07:31:45 (GMT) |
commit | 36e552ab1a51067c5ff8de63416e3fcf2c86a7bf (patch) | |
tree | 9d8fab77cdcd039e3edd85f9e79d36693ff44e84 | |
parent | 8d5726c404fd41fedb7a49e1fbef62c60754021a (diff) | |
download | linux-36e552ab1a51067c5ff8de63416e3fcf2c86a7bf.tar.xz |
bnx2x: Returning EBUSY in debug mode as well
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/bnx2x_main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 2e4d64d..6c04539 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c @@ -7059,9 +7059,8 @@ static int bnx2x_stop_leading(struct bnx2x *bp) *bp->dsb_sp_prod, dsb_sp_prod_idx); #ifdef BNX2X_STOP_ON_ERROR bnx2x_panic(); -#else - rc = -EBUSY; #endif + rc = -EBUSY; break; } cnt--; |