qcacld-3.0: Return correct status when mDNS offload is disabled

Currently the driver returns incorrect status to the user space
when mDNS offload feature is disabled. So, add a debug log and
return correct status when mDNS offload is disabled.

Change-Id: I4ae58467eb8ff464380d5a8b69b45545534de37e
CRs-Fixed: 3239903
Dieser Commit ist enthalten in:
Aditya Kodukula
2022-07-09 19:42:07 -07:00
committet von Madan Koyyalamudi
Ursprung 236a09d882
Commit 498c5bb70e

Datei anzeigen

@@ -1,5 +1,6 @@
/*
* Copyright (c) 2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -145,7 +146,8 @@ __wlan_hdd_cfg80211_set_mdns_offload(struct wiphy *wiphy,
if (!tb[MDNS_ENABLE]) {
os_if_fwol_disable_mdns_offload(hdd_ctx->psoc);
return -EINVAL;
hdd_debug_rl("MDNS offload is disabled");
return 0;
}
is_mdns_enable = nla_get_flag(tb[MDNS_ENABLE]);