git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0cf5755
)
Staging: rtl8187se, rtl8192e: fix '&' vs '|' bugs
author
Dan Carpenter
<dan.carpenter@oracle.com>
Sat, 9 Jun 2012 17:05:16 +0000
(20:05 +0300)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 12 Jun 2012 17:52:32 +0000
(10:52 -0700)
The original code is equivalent to:
wrqu->retry.flags = 0x1000 & 0x0002;
so it just sets .flags to zero. We should be ORing the values together
like r8192_wx_get_retry() does in drivers/staging/rtl8192u/r8192U_wx.c.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
No differences found