|
@@ -325,7 +325,9 @@ static u32 hdd_to_nl_sar_version(enum sar_version hdd_sar_version)
|
|
|
case (SAR_VERSION_3):
|
|
|
return QCA_WLAN_VENDOR_SAR_VERSION_3;
|
|
|
default:
|
|
|
- return QCA_WLAN_VENDOR_SAR_VERSION_INVALID;
|
|
|
+ hdd_err("Unexpected SAR version received :%u, sending default to userspace",
|
|
|
+ hdd_sar_version);
|
|
|
+ return QCA_WLAN_VENDOR_SAR_VERSION_1;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -341,14 +343,14 @@ static u32 hdd_to_nl_sar_version(enum sar_version hdd_sar_version)
|
|
|
static int hdd_sar_fill_capability_response(struct sk_buff *skb,
|
|
|
struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
- int errno = 0;
|
|
|
+ int errno;
|
|
|
u32 attr;
|
|
|
u32 value;
|
|
|
|
|
|
attr = QCA_WLAN_VENDOR_ATTR_SAR_CAPABILITY_VERSION;
|
|
|
value = hdd_to_nl_sar_version(hdd_ctx->sar_version);
|
|
|
|
|
|
- hdd_debug("SAR Version = %u", value);
|
|
|
+ hdd_debug("Sending SAR Version = %u to userspace", value);
|
|
|
|
|
|
errno = nla_put_u32(skb, attr, value);
|
|
|
|
|
@@ -548,8 +550,7 @@ hdd_convert_sarv1_to_sarv2(struct hdd_context *hdd_ctx,
|
|
|
struct sar_limit_cmd_row *row;
|
|
|
|
|
|
hdd_enter();
|
|
|
- if (hdd_ctx->sar_version != SAR_VERSION_2 &&
|
|
|
- hdd_ctx->sar_version != SAR_VERSION_3) {
|
|
|
+ if (hdd_ctx->sar_version == SAR_VERSION_1) {
|
|
|
hdd_debug("SAR version: %d", hdd_ctx->sar_version);
|
|
|
return false;
|
|
|
}
|
|
@@ -773,8 +774,7 @@ static int __wlan_hdd_set_sar_power_limits(struct wiphy *wiphy,
|
|
|
QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF0 &&
|
|
|
sar_enable <=
|
|
|
QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF4) &&
|
|
|
- (hdd_ctx->sar_version == SAR_VERSION_2 ||
|
|
|
- hdd_ctx->sar_version == SAR_VERSION_3) &&
|
|
|
+ hdd_ctx->sar_version != SAR_VERSION_1 &&
|
|
|
!hdd_ctx->config->enable_sar_conversion) {
|
|
|
hdd_err("SARV1 to SARV2 is disabled from ini");
|
|
|
return -EINVAL;
|