1. 06 9月, 2008 1 次提交
    • N
      ath5k: HW code cleanup · c6e387a2
      Nick Kossifidis 提交于
       * No code changes...
      
       * Split hw.c to multiple files for better maintenance and add some documentation on each file
         code is going to grow soon (eeprom.c for example is going to get much stuff currently developed
         on ath_info) so it's better this way.
      
       * Rename following functions to maintain naming scheme:
      
           ah_setup_xtx_desc -> ah_setup_mrr_tx_desc
           (Because xtx doesn't say much, it's actually
           a multi-rate-retry tx descriptor)
      
           ath5k_hw_put_tx/rx_buf - > ath5k_hw_set_tx/rxdp
           ath5k_hw_get_tx/rx_buf -> ath5k_hw_get_tx/rxdp
           (We don't put any "buf" we set descriptor pointers on hw)
      
           ath5k_hw_tx_start -> ath5k_hw_start_tx_dma
           ath5k_hw_start_rx -> ath5k_hw_start_rx_dma
           ath5k_hw_stop_pcu_recv -> ath5k_hw_stop_rx_pcu
           (It's easier this way to identify them, we also
           have ath5k_hw_start_rx_pcu which completes the
           set)
      
           ath5k_hw_set_intr -> ath5k_hw_set_imr
           (As in get_isr we set imr here, not "intr")
      
        * Move ath5k_hw_setup_rx_desc on ah->ah_setup_rx_desc so we can
          include support for different rx descriptors in the future
      
        * Further cleanups so that checkpatch doesn't complain
          (only some > 80 col warnings for eeprom.h and reg.h as usual
          due to comments)
      
        Tested on 5211 and 5213 cards and works ok.
      
      Changes-licensed-under: ISC
      Signed-off-by: NNick Kossifidis <mickflemm@gmail.com>
      Acked-by: NLuis R. Rodriguez <lrodriguez@atheros.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      c6e387a2
  2. 08 3月, 2008 1 次提交
    • B
      ath5k: struct ath5k_desc cleanups · 19fd6e55
      Bruno Randolf 提交于
      * make struct ath5k_desc clearer by directly including unions of structures,
        which correspond to the hardware descriptors of different HW versions (5210
        and 5212). before they were casted at onto ath5k_desc at different points
        (e.g.  ds_hw[2]).
      
      * rename some structures and variable names to make their use clearer, e.g.
        struct ath5k_hw_4w_tx_desc to ath5k_hw_4w_tx_ctl.
      
      * substitute "old" with "5210" and "new" with "5212" (eg. rename
        ath5k_hw_proc_new_rx_status() to ath5k_hw_proc_5212_rx_status()) because old
        and new are relative and we might have a newer structure at some point.
      
      * unify structs ath5k_hw_old_rx_status and ath5k_hw_new_rx_status into one
        ath5k_hw_rx_status, because they only differ in the flags and masks.
      
      drivers/net/wireless/ath5k/ath5k.h:     Changes-licensed-under: ISC
      drivers/net/wireless/ath5k/debug.c:     Changes-licensed-under: GPL
      drivers/net/wireless/ath5k/hw.c:        Changes-licensed-under: ISC
      drivers/net/wireless/ath5k/hw.h:        Changes-licensed-under: ISC
      Signed-off-by: NBruno Randolf <bruno@thinktube.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      19fd6e55
  3. 29 1月, 2008 1 次提交