Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9fbee433 authored by Wu Gao's avatar Wu Gao Committed by Madan Koyyalamudi
Browse files

qcacmn: Add chip type QCA6490 & QCA6750 in cfr meta data header

There is wrong chip type in cfr meta data header if run CFR/CSI with
HSP since doesn't fill it for QCA6490 & QCA6750.

Change-Id: I932c065d33c5eaa33f66ec8a92470f5820472d7b
CRs-Fixed: 3073865
parent 2c4fa6c9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -238,6 +238,10 @@ void target_if_cfr_fill_header(struct csi_cfr_header *hdr,
			hdr->cmn.chip_type = CFR_CAPTURE_RADIO_PINE;
		else if (target_type == TARGET_TYPE_QCA5018)
			hdr->cmn.chip_type = CFR_CAPTURE_RADIO_MAPLE;
		else if (target_type == TARGET_TYPE_QCA6490)
			hdr->cmn.chip_type = CFR_CAPTURE_RADIO_HSP;
		else if (target_type == TARGET_TYPE_QCA6750)
			hdr->cmn.chip_type = CFR_CAPTURE_RADIO_MOSELLE;
		else
			hdr->cmn.chip_type = CFR_CAPTURE_RADIO_CYP;
	}