diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-01-13 14:05:23 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-01-13 14:50:06 -0500 |
commit | 608cfbe4abaf76e9d732efd7ed1cfa3998163d91 (patch) | |
tree | 465d9293f24425ec3c03efdbe196ec756b8f68b8 /drivers/net/wireless | |
parent | 6dc75f1c9ff912cdfea4cf6a2bb5957ea174a9e5 (diff) |
p54: clamp properly instead of just truncating
The call to clamp_t() first truncates the variable signed 8 bit and as a
result, the actual clamp is a no-op.
Fixes: 0d78156eef1d ('p54: improve site survey')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/p54/txrx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/p54/txrx.c b/drivers/net/wireless/p54/txrx.c index 9c96831c0b5c..153c61539ec8 100644 --- a/drivers/net/wireless/p54/txrx.c +++ b/drivers/net/wireless/p54/txrx.c | |||
@@ -586,7 +586,7 @@ static void p54_rx_stats(struct p54_common *priv, struct sk_buff *skb) | |||
586 | chan = priv->curchan; | 586 | chan = priv->curchan; |
587 | if (chan) { | 587 | if (chan) { |
588 | struct survey_info *survey = &priv->survey[chan->hw_value]; | 588 | struct survey_info *survey = &priv->survey[chan->hw_value]; |
589 | survey->noise = clamp_t(s8, priv->noise, -128, 127); | 589 | survey->noise = clamp(priv->noise, -128, 127); |
590 | survey->channel_time = priv->survey_raw.active; | 590 | survey->channel_time = priv->survey_raw.active; |
591 | survey->channel_time_tx = priv->survey_raw.tx; | 591 | survey->channel_time_tx = priv->survey_raw.tx; |
592 | survey->channel_time_busy = priv->survey_raw.tx + | 592 | survey->channel_time_busy = priv->survey_raw.tx + |