|
@@ -266,7 +266,8 @@ int target_if_cfr_init_pdev(struct wlan_objmgr_psoc *psoc,
|
|
pa->is_cfr_capable = cfr_sc->is_cfr_capable;
|
|
pa->is_cfr_capable = cfr_sc->is_cfr_capable;
|
|
|
|
|
|
return cfr_wifi2_0_init_pdev(psoc, pdev);
|
|
return cfr_wifi2_0_init_pdev(psoc, pdev);
|
|
- } else if (target_type == TARGET_TYPE_QCA6018) {
|
|
|
|
|
|
+ } else if ((target_type == TARGET_TYPE_QCA6018) ||
|
|
|
|
+ (target_type == TARGET_TYPE_QCN9000)) {
|
|
pa->is_cfr_capable = cfr_sc->is_cfr_capable;
|
|
pa->is_cfr_capable = cfr_sc->is_cfr_capable;
|
|
return cfr_6018_init_pdev(psoc, pdev);
|
|
return cfr_6018_init_pdev(psoc, pdev);
|
|
} else
|
|
} else
|
|
@@ -292,7 +293,8 @@ int target_if_cfr_deinit_pdev(struct wlan_objmgr_psoc *psoc,
|
|
(target_type == TARGET_TYPE_QCA9888)) {
|
|
(target_type == TARGET_TYPE_QCA9888)) {
|
|
|
|
|
|
return cfr_wifi2_0_deinit_pdev(psoc, pdev);
|
|
return cfr_wifi2_0_deinit_pdev(psoc, pdev);
|
|
- } else if (target_type == TARGET_TYPE_QCA6018) {
|
|
|
|
|
|
+ } else if ((target_type == TARGET_TYPE_QCA6018) ||
|
|
|
|
+ (target_type == TARGET_TYPE_QCN9000)) {
|
|
return cfr_6018_deinit_pdev(psoc, pdev);
|
|
return cfr_6018_deinit_pdev(psoc, pdev);
|
|
} else
|
|
} else
|
|
return QDF_STATUS_E_NOSUPPORT;
|
|
return QDF_STATUS_E_NOSUPPORT;
|