diff options
-rw-r--r-- | drivers/net/cxgb4/cxgb4.h | 1 | ||||
-rw-r--r-- | drivers/net/cxgb4/cxgb4_main.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/cxgb4/cxgb4.h b/drivers/net/cxgb4/cxgb4.h index 5e37c1e67fe9..62804bb4022d 100644 --- a/drivers/net/cxgb4/cxgb4.h +++ b/drivers/net/cxgb4/cxgb4.h | |||
@@ -309,7 +309,6 @@ enum { /* adapter flags */ | |||
309 | FULL_INIT_DONE = (1 << 0), | 309 | FULL_INIT_DONE = (1 << 0), |
310 | USING_MSI = (1 << 1), | 310 | USING_MSI = (1 << 1), |
311 | USING_MSIX = (1 << 2), | 311 | USING_MSIX = (1 << 2), |
312 | QUEUES_BOUND = (1 << 3), | ||
313 | FW_OK = (1 << 4), | 312 | FW_OK = (1 << 4), |
314 | }; | 313 | }; |
315 | 314 | ||
diff --git a/drivers/net/cxgb4/cxgb4_main.c b/drivers/net/cxgb4/cxgb4_main.c index 352c77090123..27f65b501a0a 100644 --- a/drivers/net/cxgb4/cxgb4_main.c +++ b/drivers/net/cxgb4/cxgb4_main.c | |||
@@ -2758,8 +2758,8 @@ static int adap_init1(struct adapter *adap, struct fw_caps_config_cmd *c) | |||
2758 | if (ret < 0) | 2758 | if (ret < 0) |
2759 | return ret; | 2759 | return ret; |
2760 | 2760 | ||
2761 | ret = t4_cfg_pfvf(adap, 0, 0, 0, 64, 64, 64, 0, 0, 4, 0xf, 0xf, 16, | 2761 | ret = t4_cfg_pfvf(adap, 0, 0, 0, MAX_EGRQ, 64, MAX_INGQ, 0, 0, 4, |
2762 | FW_CMD_CAP_PF, FW_CMD_CAP_PF); | 2762 | 0xf, 0xf, 16, FW_CMD_CAP_PF, FW_CMD_CAP_PF); |
2763 | if (ret < 0) | 2763 | if (ret < 0) |
2764 | return ret; | 2764 | return ret; |
2765 | 2765 | ||