1. 25 9月, 2013 1 次提交
    • J
      rtlwifi: Remove extern from function prototypes · a958df5d
      Joe Perches 提交于
      There are a mix of function prototypes with and without extern
      in the kernel sources.  Standardize on not using extern for
      function prototypes.
      
      Function prototypes don't need to be written with extern.
      extern is assumed by the compiler.  Its use is as unnecessary as
      using auto to declare automatic/local variables in a block.
      Signed-off-by: NJoe Perches <joe@perches.com>
      a958df5d
  2. 04 9月, 2013 2 次提交
  3. 20 8月, 2013 1 次提交
  4. 16 8月, 2013 1 次提交
  5. 02 8月, 2013 1 次提交
  6. 19 7月, 2013 1 次提交
    • L
      rtlwifi: Fix build errors for unusual cases · 6f334c2b
      Larry Finger 提交于
      The present build configuration for the rtlwifi family of drivers will
      fail under two known conditions:
      
      (1) If rtlwifi is selected without selecting any of the dependent drivers,
          there are errors in the build.
      (2) If the PCI drivers are built into the kernel and the USB drivers are modules,
          or vice versa, there are missing globals.
      
      The first condition is fixed by never building rtlwifi unless at least one
      of the device drivers is selected. The second failure is fixed by splitting
      the PCI and USB codes out of rtlwifi, and creating their own mini drivers.
      If the drivers that use them are modules, they will also be modules.
      
      Although a number of files are touched by this patch, only Makefile and Kconfig
      have undergone significant changes. The only modifications to the other files
      were to export entry points needed by the new rtl_pci and rtl_usb units, or to
      rename two variables that had names that were likely to cause namespace collisions.
      
      Reported-by: Fengguang Wu <fengguang.wu@intel.com>  [Condition 1]
      Reported-by: Ben Hutchings <bhutchings@solarflare.com> [Condition 2]
      Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
      Cc: Ben Hutchings <bhutchings@solarflare.com>
      Cc: Fengguang Wu <fengguang.wu@intel.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      6f334c2b
  7. 18 7月, 2013 1 次提交
  8. 16 7月, 2013 1 次提交
  9. 04 7月, 2013 1 次提交
  10. 25 6月, 2013 1 次提交
  11. 20 6月, 2013 1 次提交
    • L
      rtlwifi: rtl8192cu: Fix duplicate if test · 10d0b903
      Larry Finger 提交于
      A typo causes routine rtl92cu_phy_rf6052_set_cck_txpower() to test the
      same condition twice. The problem was found using cppcheck-1.49, and the
      proper fix was verified against the pre-mac80211 version of the code.
      
      This patch was originally included as commit 1288aa4e, but was accidentally
      reverted in a later patch.
      
      Reported-by: David Binderman <dcb314@hotmail.com> [original report]
      Reported-by: Andrea Morello <andrea.merello@gmail.com> [report of accidental reversion]
      Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
      Cc: stable <stable@vger.kernel.org>  [back to 2.6.39]
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      10d0b903
  12. 18 6月, 2013 1 次提交
  13. 12 6月, 2013 2 次提交
  14. 11 6月, 2013 1 次提交
  15. 03 6月, 2013 1 次提交
  16. 18 5月, 2013 2 次提交
  17. 26 4月, 2013 1 次提交
  18. 24 4月, 2013 1 次提交
  19. 11 4月, 2013 1 次提交
  20. 09 4月, 2013 2 次提交
  21. 04 4月, 2013 1 次提交
  22. 02 4月, 2013 9 次提交
  23. 26 3月, 2013 5 次提交
  24. 19 3月, 2013 1 次提交