Browse Source

qcacld-3.0: Return value check error in getlinkspeed

The return value check logic is wrong in __iw_get_softap_linkspeed.
Which cause get linkspeed always failed.

Change-Id: If37732867f91e2b95996614ab863953d5ed5af93
CRs-Fixed: 2232332
Jiachao Wu 7 years ago
parent
commit
51c9a14dbf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/hdd/src/wlan_hdd_hostapd.c

+ 1 - 1
core/hdd/src/wlan_hdd_hostapd.c

@@ -5237,7 +5237,7 @@ int __iw_get_softap_linkspeed(struct net_device *dev,
 	}
 	rc = wlan_hdd_get_linkspeed_for_peermac(adapter, &macAddress,
 						&link_speed);
-	if (!rc) {
+	if (rc) {
 		hdd_err("Unable to retrieve SME linkspeed");
 		return rc;
 	}