|
@@ -3651,11 +3651,6 @@ int qlcnic_validate_max_tx_rings(struct qlcnic_adapter *adapter, u32 txq)
|
|
|
u8 max_hw = QLCNIC_MAX_TX_RINGS;
|
|
|
u32 max_allowed;
|
|
|
|
|
|
- if (!qlcnic_82xx_check(adapter)) {
|
|
|
- netdev_err(netdev, "No Multi TX-Q support\n");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
if (!qlcnic_use_msi_x && !qlcnic_use_msi) {
|
|
|
netdev_err(netdev, "No Multi TX-Q support in INT-x mode\n");
|
|
|
return -EINVAL;
|
|
@@ -3695,8 +3690,7 @@ int qlcnic_validate_max_rss(struct qlcnic_adapter *adapter,
|
|
|
u8 max_hw = adapter->ahw->max_rx_ques;
|
|
|
u32 max_allowed;
|
|
|
|
|
|
- if (qlcnic_82xx_check(adapter) && !qlcnic_use_msi_x &&
|
|
|
- !qlcnic_use_msi) {
|
|
|
+ if (!qlcnic_use_msi_x && !qlcnic_use_msi) {
|
|
|
netdev_err(netdev, "No RSS support in INT-x mode\n");
|
|
|
return -EINVAL;
|
|
|
}
|