Explorar el Código

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 hace 7 años
padre
commit
51c9a14dbf
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;
 	}