aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEilon Greenstein <eilong@broadcom.com>2009-11-09 01:09:28 -0500
committerDavid S. Miller <davem@davemloft.net>2009-11-10 23:54:36 -0500
commit91545f6e588c601d1dff01d396155d973db83a31 (patch)
treec689bb242ac8decb7f74002513d5eada466c37bf
parentd6a2f98b0128ad1225f959610ba21b6679b7cd96 (diff)
bnx2x: Remove misleading error print
Failing to allocate MSI-X vectors is not an error and should not be printed as such Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/bnx2x_main.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c
index 47d67e6aabc..ed56973794e 100644
--- a/drivers/net/bnx2x_main.c
+++ b/drivers/net/bnx2x_main.c
@@ -7486,11 +7486,6 @@ static int bnx2x_set_int_mode(struct bnx2x *bp)
7486 rc = bnx2x_enable_msix(bp); 7486 rc = bnx2x_enable_msix(bp);
7487 if (rc) { 7487 if (rc) {
7488 /* failed to enable MSI-X */ 7488 /* failed to enable MSI-X */
7489 if (bp->multi_mode)
7490 BNX2X_ERR("Multi requested but failed to "
7491 "enable MSI-X (rx %d tx %d), "
7492 "set number of queues to 1\n",
7493 bp->num_rx_queues, bp->num_tx_queues);
7494 bp->num_rx_queues = 1; 7489 bp->num_rx_queues = 1;
7495 bp->num_tx_queues = 1; 7490 bp->num_tx_queues = 1;
7496 } 7491 }