wl1251: correct definitions for 0th bit defines
authorBob Copeland <[email protected]>
Mon, 17 Aug 2009 15:18:14 +0000 (11:18 -0400)
committerJohn W. Linville <[email protected]>
Thu, 20 Aug 2009 15:35:58 +0000 (11:35 -0400)
ACX_SLV_SOFT_RESET_BIT and ACX_REG_EEPROM_START_BIT are both defined
as "1" in the vendor driver code, but they were defined to be BIT(1)
("2") here.

The SOFT_RESET typo ensures that wl1251_boot_soft_reset() doesn't;
as a result the device hangs when trying to reprogram the PLL
registers while running.

Signed-off-by: Bob Copeland <[email protected]>
Acked-by: Kalle Valo <[email protected]>
Signed-off-by: John W. Linville <[email protected]>
drivers/net/wireless/wl12xx/wl1251_reg.h

index bdd561001dcb041dd6a443d0972b0628e3b46e21..06e1bd94a7393a430028c8afb2b7f5387db2652a 100644 (file)
@@ -245,8 +245,8 @@ enum wl12xx_acx_int_reg {
        ACX_REG_TABLE_LEN
 };
 
-#define ACX_SLV_SOFT_RESET_BIT   BIT(1)
-#define ACX_REG_EEPROM_START_BIT BIT(1)
+#define ACX_SLV_SOFT_RESET_BIT   BIT(0)
+#define ACX_REG_EEPROM_START_BIT BIT(0)
 
 /* Command/Information Mailbox Pointers */