1. 07 10月, 2010 1 次提交
    • F
      ath9k_hw: clean up calibration flags · 6497827f
      Felix Fietkau 提交于
      The calibration actual calibration flags are only used by the per chip family
      source files, so it makes more sense to define them in those files instead
      of globally. That way the code has to test for less flags.
      
      Also instead of using a separate callback for testing whether a particular
      calibration type is supported, simply adjust ah->supp_cals in the calibration
      init which is called right after the hardware reset, before any of the
      calibrations are run.
      Signed-off-by: NFelix Fietkau <nbd@openwrt.org>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      6497827f
  2. 06 10月, 2010 1 次提交
  3. 05 8月, 2010 3 次提交
  4. 03 6月, 2010 1 次提交
  5. 14 5月, 2010 1 次提交
    • J
      drivers/net: Remove unnecessary returns from void function()s · a4b77097
      Joe Perches 提交于
      This patch removes from drivers/net/ all the unnecessary
      return; statements that precede the last closing brace of
      void functions.
      
      It does not remove the returns that are immediately
      preceded by a label as gcc doesn't like that.
      
      It also does not remove null void functions with return.
      
      Done via:
      $ grep -rP --include=*.[ch] -l "return;\n}" net/ | \
        xargs perl -i -e 'local $/ ; while (<>) { s/\n[ \t\n]+return;\n}/\n}/g; print; }'
      
      with some cleanups by hand.
      
      Compile tested x86 allmodconfig only.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a4b77097
  6. 28 4月, 2010 1 次提交
  7. 17 4月, 2010 5 次提交