qcacmn: Add PEACH device support

Add support for peach device. Add peach conditional statements.

Change-Id: Ia107e60fd00b4938984414fd92d6699d11fd3797
CRs-Fixed: 3394198
This commit is contained in:
Prakash Manjunathappa
2022-12-26 09:30:48 -08:00
committed by Madan Koyyalamudi
parent 4bb2e1a3f2
commit 3cde321196
17 changed files with 86 additions and 18 deletions

View File

@@ -366,6 +366,12 @@ static const struct qwlan_hw qwlan_hw_list[] = {
.subid = 0xF,
.name = "MANGO_V1",
},
{
.id = PEACH_V1,
.subid = 0,
.name = "PEACH_V1",
},
{
.id = KIWI_V1,
.subid = 0,
@@ -1783,6 +1789,12 @@ int hif_get_device_type(uint32_t device_id,
hif_info(" *********** MANGO *************");
break;
case PEACH_DEVICE_ID:
*hif_type = HIF_TYPE_PEACH;
*target_type = TARGET_TYPE_PEACH;
hif_info(" *********** PEACH *************");
break;
case QCA8074V2_DEVICE_ID:
*hif_type = HIF_TYPE_QCA8074V2;
*target_type = TARGET_TYPE_QCA8074V2;