1. 08 7月, 2011 2 次提交
  2. 23 6月, 2011 1 次提交
  3. 02 6月, 2011 3 次提交
  4. 27 5月, 2011 1 次提交
  5. 17 5月, 2011 1 次提交
  6. 12 5月, 2011 1 次提交
  7. 30 4月, 2011 1 次提交
    • J
      b43: avoid uninitialized variable warnings in phy_n · 2eeb6fd0
      John W. Linville 提交于
        CC [M]  drivers/net/wireless/b43/phy_n.o
      drivers/net/wireless/b43/phy_n.c: In function ‘b43_nphy_set_channel’:
      drivers/net/wireless/b43/phy_n.c:3848:47: warning: ‘tabent_r2’ may be used uninitialized in this function
      drivers/net/wireless/b43/phy_n.c:3849:47: warning: ‘tabent_r3’ may be used uninitialized in this function
      drivers/net/wireless/b43/phy_n.c: In function ‘b43_nphy_poll_rssi.clone.14’:
      drivers/net/wireless/b43/phy_n.c:2270:6: warning: ‘save_regs_phy$7’ may be used uninitialized in this function
      drivers/net/wireless/b43/phy_n.c:2270:6: warning: ‘save_regs_phy$8’ may be used uninitialized in this function
      
      FWIW, the usage of these variables is goverened by checks that match
      their initializations.  So, I think these are actually false warnings.
      Still, I would rather avoid the warning SPAM...
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      2eeb6fd0
  8. 05 3月, 2011 2 次提交
  9. 24 2月, 2011 3 次提交
  10. 23 12月, 2010 4 次提交
  11. 14 12月, 2010 2 次提交
  12. 09 12月, 2010 4 次提交
  13. 03 12月, 2010 6 次提交
  14. 25 11月, 2010 6 次提交
  15. 23 11月, 2010 1 次提交
    • J
      iwlwifi: Use static const · 20407ed8
      Joe Perches 提交于
      Using static const generally increases object text and decreases data size.
      It also generally decreases overall object size.
      
         text	   data	    bss	    dec	    hex	filename
        48644	     57	  12120	  60821	   ed95	drivers/net/wireless/b43/phy_n.o.new
        48661	     57	  12120	  60838	   eda6	drivers/net/wireless/b43/phy_n.o.old
        37906	     86	   7904	  45896	   b348	drivers/net/wireless/iwlwifi/iwl-agn-lib.o.new
        37937	     86	   7904	  45927	   b367	drivers/net/wireless/iwlwifi/iwl-agn-lib.o.old
        37781	    523	   6752	  45056	   b000	drivers/net/wireless/iwlwifi/iwl-3945.o.new
        37781	    523	   6752	  45056	   b000	drivers/net/wireless/iwlwifi/iwl-3945.o.old
      
      Changed b43_nphy_write_clip_detection to take a const u16 *
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      20407ed8
  16. 16 11月, 2010 2 次提交