Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=2ab1f519cbec0902cb86f1e29b10f2f00dd020c0
Commit:     2ab1f519cbec0902cb86f1e29b10f2f00dd020c0
Parent:     15617858b3cf249a3577df8da970f779bbc8a737
Author:     Al Viro <[EMAIL PROTECTED]>
AuthorDate: Thu Dec 20 23:04:35 2007 -0500
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:08:52 2008 -0800

    airo: fix writerids() endianness
    
    in writerids() we do _not_ byteswap, so we want to access
    ->opmode as little-endian.
    
    Signed-off-by: Al Viro <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/airo.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/wireless/airo.c b/drivers/net/wireless/airo.c
index 68c5e54..87b6adb 100644
--- a/drivers/net/wireless/airo.c
+++ b/drivers/net/wireless/airo.c
@@ -7865,9 +7865,9 @@ static int writerids(struct net_device *dev, 
aironet_ioctl *comp) {
                ConfigRid *cfg = (ConfigRid *)iobuf;
 
                if (test_bit(FLAG_MIC_CAPABLE, &ai->flags))
-                       cfg->opmode |= MODE_MIC;
+                       cfg->opmode |= cpu_to_le16(MODE_MIC);
 
-               if ((cfg->opmode & 0xFF) == MODE_STA_IBSS)
+               if ((le16_to_cpu(cfg->opmode) & 0xFF) == MODE_STA_IBSS)
                        set_bit (FLAG_ADHOC, &ai->flags);
                else
                        clear_bit (FLAG_ADHOC, &ai->flags);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to