Skip to content

Commit

Permalink
bnx2x: Remove misleading error print
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Eilon Greenstein authored and David S. Miller committed Nov 11, 2009
1 parent d6a2f98 commit 91545f6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions drivers/net/bnx2x_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -7486,11 +7486,6 @@ static int bnx2x_set_int_mode(struct bnx2x *bp)
rc = bnx2x_enable_msix(bp);
if (rc) {
/* failed to enable MSI-X */
if (bp->multi_mode)
BNX2X_ERR("Multi requested but failed to "
"enable MSI-X (rx %d tx %d), "
"set number of queues to 1\n",
bp->num_rx_queues, bp->num_tx_queues);
bp->num_rx_queues = 1;
bp->num_tx_queues = 1;
}
Expand Down

0 comments on commit 91545f6

Please sign in to comment.