Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 196923
b: refs/heads/master
c: 4dbb8e5
h: refs/heads/master
i:
  196921: 89d4657
  196919: 670199c
v: v3
  • Loading branch information
Dan Carpenter authored and Greg Kroah-Hartman committed May 11, 2010
1 parent cc7b3c4 commit fb0deda
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 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: 1e1d25cb0d248d58ac8e586ebb23bf2f6dc55c0b
refs/heads/master: 4dbb8e57c1ef23e5822b85a646b4ba31a98b9864
14 changes: 7 additions & 7 deletions trunk/drivers/staging/rt2860/sta_ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1047,8 +1047,7 @@ int rt_ioctl_giwscan(struct net_device *dev,
if (tmpRate == 0x6c
&& pAdapter->ScanTab.BssEntry[i].HtCapabilityLen >
0) {
int rate_count =
sizeof(ralinkrate) / sizeof(__s32);
int rate_count = ARRAY_SIZE(ralinkrate);
struct rt_ht_cap_info capInfo =
pAdapter->ScanTab.BssEntry[i].HtCapability.
HtCapInfo;
Expand All @@ -1061,10 +1060,11 @@ int rt_ioctl_giwscan(struct net_device *dev,
int rate_index =
12 + ((u8)capInfo.ChannelWidth * 24) +
((u8)shortGI * 48) + ((u8)maxMCS);

if (rate_index < 0)
rate_index = 0;
if (rate_index > rate_count)
rate_index = rate_count;
if (rate_index >= rate_count)
rate_index = rate_count - 1;
iwe.u.bitrate.value =
ralinkrate[rate_index] * 500000;
}
Expand Down Expand Up @@ -2338,7 +2338,7 @@ int rt_ioctl_giwrate(struct net_device *dev,
*/
GET_PAD_FROM_NET_DEV(pAd, dev);

rate_count = sizeof(ralinkrate) / sizeof(__s32);
rate_count = ARRAY_SIZE(ralinkrate);
/*check if the interface is down */
if (!RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_INTERRUPT_IN_USE)) {
DBGPRINT(RT_DEBUG_TRACE, ("INFO::Network is down!\n"));
Expand Down Expand Up @@ -2369,8 +2369,8 @@ int rt_ioctl_giwrate(struct net_device *dev,
if (rate_index < 0)
rate_index = 0;

if (rate_index > rate_count)
rate_index = rate_count;
if (rate_index >= rate_count)
rate_index = rate_count - 1;

wrqu->bitrate.value = ralinkrate[rate_index] * 500000;
wrqu->bitrate.disabled = 0;
Expand Down

0 comments on commit fb0deda

Please sign in to comment.