qcacmn: Update set country API to return failure

When country has not changed, reg_set_country will drop the request.
Return failure in this case so caller will know if no action is taken.

Change-Id: If6095887c6166edc626eab3bde312cc0aa8490b2
CRs-fixed: 2892356
Šī revīzija ir iekļauta:
Lincoln Tran
2021-03-04 10:24:56 -08:00
revīziju iesūtīja snandini
vecāks 9b797fd035
revīzija 9f2767dd41

Parādīt failu

@@ -211,7 +211,7 @@ QDF_STATUS reg_set_country(struct wlan_objmgr_pdev *pdev,
if (psoc_reg->cc_src == SOURCE_USERSPACE ||
psoc_reg->cc_src == SOURCE_CORE) {
reg_debug("country is not different");
return QDF_STATUS_SUCCESS;
return QDF_STATUS_E_INVAL;
}
}