Преглед на файлове

qcacld-3.0: pdev suspend is not supported for qcn7605

Add check for device type QCN7605 before suspend target.
QCN7605 FTM mode firmware doesn't support pdev suspend.

Change-Id: I73ab53d8f20086b535edfd00617620e1b667772b
CRs-Fixed: 2993110
Zhaoyang Liu преди 3 години
родител
ревизия
7b302f0c1c
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  1. 2 1
      core/cds/src/cds_api.c

+ 2 - 1
core/cds/src/cds_api.c

@@ -1040,7 +1040,8 @@ static bool cds_should_suspend_target(void)
 	if (target_type == TARGET_TYPE_AR6320 ||
 	    target_type == TARGET_TYPE_AR6320V1 ||
 	    target_type == TARGET_TYPE_AR6320V2 ||
-	    target_type == TARGET_TYPE_AR6320V3)
+	    target_type == TARGET_TYPE_AR6320V3 ||
+	    target_type == TARGET_TYPE_QCN7605)
 		return false;
 
 	/* target should support suspend in FTM mode */