1. 09 8月, 2011 1 次提交
  2. 08 4月, 2011 1 次提交
    • J
      wl1251: Prepare for idle mode support · a0bbb58b
      Jarkko Nikula 提交于
      RFC for WL1251 idle mode support brought a few issues that are worth to
      update before adding the idle mode support.
      
      Since the idle mode can reuse the code that is now used in Power Save Mode
      (PSM), the flag psm in struct wl1251 is changed to variable station_mode
      to be able to distinguish between PSM and idle modes.
      
      As the station mode is different than the power power save mode command
      that is sent to chip, the enum wl1251_cmd_ps_mod values are used only when
      communicating with the chip and new enum wl1251_station_mode values are used
      inside the driver.
      
      Confusing comment about psm and elp relation is removed since the PSM is
      actually activated by putting the chip into Entreme Low Power (ELP) mode.
      Signed-off-by: NJarkko Nikula <jhnikula@gmail.com>
      Acked-by: NKalle Valo <kvalo@adurom.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      a0bbb58b
  3. 12 10月, 2010 1 次提交
    • K
      wl1251: move to it's own directory · 9bc6772e
      Kalle Valo 提交于
      wl1271 driver is under heavy development but on the other hand the older
      wl1251 driver is currently considered more as a legacy driver. To make it
      easier to develop wl1271 features move wl1251 to it's own directory,
      drivers/net/wireless/wl1251.
      
      There are no functional changes, only moving of files. One regression
      is that Kconfig won't be updated automatically and user needs to enable
      wl1251 manually with an older config file.
      Signed-off-by: NKalle Valo <kvalo@adurom.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      9bc6772e
  4. 26 8月, 2010 1 次提交
  5. 25 8月, 2010 1 次提交
  6. 27 7月, 2010 1 次提交
    • J
      wl1251: fix sparse-generated warnings · 1ab36d68
      John W. Linville 提交于
        CHECK   drivers/net/wireless/wl12xx/wl1251_tx.c
      drivers/net/wireless/wl12xx/wl1251_tx.c:118:32: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_tx.c:118:32:    expected unsigned short [unsigned] [usertype] frag_threshold
      drivers/net/wireless/wl12xx/wl1251_tx.c:118:32:    got restricted __le16 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_tx.c:164:24: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_tx.c:164:24:    expected unsigned short [unsigned] [usertype] length
      drivers/net/wireless/wl12xx/wl1251_tx.c:164:24:    got restricted __le16 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_tx.c:166:22: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_tx.c:166:22:    expected unsigned short [unsigned] [usertype] rate
      drivers/net/wireless/wl12xx/wl1251_tx.c:166:22:    got restricted __le16 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_tx.c:167:29: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_tx.c:167:29:    expected unsigned int [unsigned] [usertype] expiry_time
      drivers/net/wireless/wl12xx/wl1251_tx.c:167:29:    got restricted __le32 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_tx.c:200:43: warning: incorrect type in argument 1 (different base types)
      drivers/net/wireless/wl12xx/wl1251_tx.c:200:43:    expected restricted __le16 [usertype] fc
      drivers/net/wireless/wl12xx/wl1251_tx.c:200:43:    got unsigned short [unsigned] [assigned] [usertype] fc
        CHECK   drivers/net/wireless/wl12xx/wl1251_cmd.c
      drivers/net/wireless/wl12xx/wl1251_cmd.c:428:39: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_cmd.c:428:39:    expected unsigned int [unsigned] [usertype] rx_config_options
      drivers/net/wireless/wl12xx/wl1251_cmd.c:428:39:    got restricted __le32 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_cmd.c:429:39: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_cmd.c:429:39:    expected unsigned int [unsigned] [usertype] rx_filter_options
      drivers/net/wireless/wl12xx/wl1251_cmd.c:429:39:    got restricted __le32 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_cmd.c:435:29: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_cmd.c:435:29:    expected unsigned short [unsigned] [usertype] tx_rate
      drivers/net/wireless/wl12xx/wl1251_cmd.c:435:29:    got restricted __le16 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_cmd.c:439:47: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_cmd.c:439:47:    expected unsigned int [unsigned] [usertype] min_duration
      drivers/net/wireless/wl12xx/wl1251_cmd.c:439:47:    got restricted __le32 [usertype] <noident>
      drivers/net/wireless/wl12xx/wl1251_cmd.c:441:47: warning: incorrect type in assignment (different base types)
      drivers/net/wireless/wl12xx/wl1251_cmd.c:441:47:    expected unsigned int [unsigned] [usertype] max_duration
      drivers/net/wireless/wl12xx/wl1251_cmd.c:441:47:    got restricted __le32 [usertype] <noident>
        CHECK   drivers/net/wireless/wl12xx/wl1251_boot.c
      drivers/net/wireless/wl12xx/wl1251_boot.c:228:22: warning: symbol 'interrupt' shadows an earlier one
      /home/linville/git/wireless-next-2.6/arch/x86/include/asm/hw_irq.h:132:13: originally declared here
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      1ab36d68
  7. 03 6月, 2010 1 次提交
  8. 13 1月, 2010 2 次提交
  9. 14 8月, 2009 3 次提交
  10. 11 7月, 2009 5 次提交
  11. 07 5月, 2009 1 次提交