airo endianness bug: cap_rid.extSoftCap
never had been byteswapped, used as host-endian... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
0300b3321d
commit
15617858b3
|
@ -3847,7 +3847,8 @@ static u16 setup_card(struct airo_info *ai, u8 *mac, int lock)
|
|||
ai->config.authType = AUTH_OPEN;
|
||||
ai->config.modulation = MOD_CCK;
|
||||
|
||||
if ((cap_rid.len>=sizeof(cap_rid)) && (cap_rid.extSoftCap&1) &&
|
||||
if ((cap_rid.len>=sizeof(cap_rid)) &&
|
||||
(cap_rid.extSoftCap & cpu_to_le16(1)) &&
|
||||
(micsetup(ai) == SUCCESS)) {
|
||||
ai->config.opmode |= MODE_MIC;
|
||||
set_bit(FLAG_MIC_CAPABLE, &ai->flags);
|
||||
|
|
Loading…
Reference in New Issue