Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 220171
b: refs/heads/master
c: d953a05
h: refs/heads/master
i:
  220169: 3d3e4f2
  220167: 832fdbb
v: v3
  • Loading branch information
Henry Ptasinski authored and Greg Kroah-Hartman committed Oct 8, 2010
1 parent 1ae3ada commit 3c6b669
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 86566325d398409637fe920181306d43f5980541
refs/heads/master: d953a05d04b17b43f3bf4a183131e5c5e223ecaa
4 changes: 2 additions & 2 deletions trunk/drivers/staging/brcm80211/phy/wlc_phy_lcn.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <linux/string.h>
#include <linuxver.h>
#include <siutils.h>
#include <bitfuncs.h>
#include <linux/bitops.h>
#include <hndpmu.h>

#include <wlc_phy_radio.h>
Expand Down Expand Up @@ -5196,7 +5196,7 @@ int32 wlc_lcnphy_rx_signal_power(phy_info_t *pi, int32 gain_index)
{
uint32 power = (received_power * 16);
uint32 msb1, msb2, val1, val2, diff1, diff2;
msb1 = find_msbit(power);
msb1 = ffs(power) - 1;
msb2 = msb1 + 1;
val1 = 1 << msb1;
val2 = 1 << msb2;
Expand Down

0 comments on commit 3c6b669

Please sign in to comment.