Merge "ath10k: Skip reading of firmware-5.bin file"

This commit is contained in:
Linux Build Service Account 2017-02-09 03:11:35 -08:00 committed by Gerrit - the friendly Code Review server
commit 521046c118

View file

@ -1298,6 +1298,14 @@ err:
static int ath10k_core_fetch_firmware_files(struct ath10k *ar)
{
int ret;
struct ath10k_fw_file *fw_file;
if (!ar->is_bmi && QCA_REV_WCN3990(ar)) {
fw_file = &ar->normal_mode_fw.fw_file;
fw_file->wmi_op_version = ATH10K_FW_WMI_OP_VERSION_HL_1_0;
fw_file->htt_op_version = ATH10K_FW_HTT_OP_VERSION_TLV;
return 0;
}
if (ar->is_bmi) {
/* calibration file is optional, don't check for any errors */