Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 22501c8e authored by Zhu Yi's avatar Zhu Yi Committed by James Ketrenos
Browse files

Fix ipw_wx_get_txpow shows wrong disabled value.



Signed-off-by: default avatarZhu Yi <yi.zhu@intel.com>
parent 0ece35b5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8957,7 +8957,7 @@ static int ipw_wx_get_txpow(struct net_device *dev,
	up(&priv->sem);

	IPW_DEBUG_WX("GET TX Power -> %s %d \n",
		     wrqu->power.disabled ? "ON" : "OFF", wrqu->power.value);
		     wrqu->power.disabled ? "OFF" : "ON", wrqu->power.value);

	return 0;
}