From: Eilon Greenstein Date: Mon, 9 Nov 2009 06:09:28 +0000 (+0000) Subject: bnx2x: Remove misleading error print X-Git-Tag: v2.6.33-rc1~388^2~435 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91545f6e588c601d1dff01d396155d973db83a31;p=profile%2Fivi%2Fkernel-x86-ivi.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 47d67e6..ed56973 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) 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; }