Skip to content

Commit

Permalink
Fix ipw_wx_get_txpow shows wrong disabled value.
Browse files Browse the repository at this point in the history
Signed-off-by: Zhu Yi <yi.zhu@intel.com>
  • Loading branch information
Zhu Yi authored and James Ketrenos committed Nov 7, 2005
1 parent 0ece35b commit 22501c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ipw2200.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 22501c8

Please sign in to comment.