fw.c (7d6222e27013a18f36e54f40a66e209a859fc1a8) | fw.c (c8c017a6ff933ff88f3abf7d924e717284e218af) |
---|---|
1/****************************************************************************** 2 * 3 * This file is provided under a dual BSD/GPLv2 license. When using or 4 * redistributing this file, you may do so under either license. 5 * 6 * GPL LICENSE SUMMARY 7 * 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. --- 1104 unchanged lines hidden (view full) --- 1113 } 1114 1115 ret = iwl_mvm_send_bt_init_conf(mvm); 1116 if (ret) 1117 goto error; 1118 1119 /* Init RSS configuration */ 1120 /* TODO - remove a000 disablement when we have RXQ config API */ | 1/****************************************************************************** 2 * 3 * This file is provided under a dual BSD/GPLv2 license. When using or 4 * redistributing this file, you may do so under either license. 5 * 6 * GPL LICENSE SUMMARY 7 * 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved. --- 1104 unchanged lines hidden (view full) --- 1113 } 1114 1115 ret = iwl_mvm_send_bt_init_conf(mvm); 1116 if (ret) 1117 goto error; 1118 1119 /* Init RSS configuration */ 1120 /* TODO - remove a000 disablement when we have RXQ config API */ |
1121 if (iwl_mvm_has_new_rx_api(mvm) && !iwl_mvm_has_new_tx_api(mvm)) { | 1121 if (iwl_mvm_has_new_rx_api(mvm) && 1122 mvm->trans->cfg->device_family != IWL_DEVICE_FAMILY_A000) { |
1122 ret = iwl_send_rss_cfg_cmd(mvm); 1123 if (ret) { 1124 IWL_ERR(mvm, "Failed to configure RSS queues: %d\n", 1125 ret); 1126 goto error; 1127 } 1128 } 1129 --- 181 unchanged lines hidden --- | 1123 ret = iwl_send_rss_cfg_cmd(mvm); 1124 if (ret) { 1125 IWL_ERR(mvm, "Failed to configure RSS queues: %d\n", 1126 ret); 1127 goto error; 1128 } 1129 } 1130 --- 181 unchanged lines hidden --- |