projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6a2f98
)
bnx2x: Remove misleading error print
author
Eilon Greenstein
<eilong@broadcom.com>
Mon, 9 Nov 2009 06:09:28 +0000
(06:09 +0000)
committer
David S. Miller
<davem@davemloft.net>
Wed, 11 Nov 2009 04:54:36 +0000
(20:54 -0800)
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>
drivers/net/bnx2x_main.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/net/bnx2x_main.c
b/drivers/net/bnx2x_main.c
index 47d67e6aabcf0690d36ed13d4d5001474999c07d..ed56973794e8e0b0c9221a26b3f352d6df69cfe6 100644
(file)
--- 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;
}