1. 22 9月, 2021 1 次提交
  2. 10 9月, 2021 1 次提交
  3. 21 6月, 2021 1 次提交
  4. 22 3月, 2021 1 次提交
  5. 10 3月, 2021 2 次提交
  6. 21 1月, 2021 1 次提交
  7. 19 11月, 2020 1 次提交
  8. 26 9月, 2020 1 次提交
  9. 17 9月, 2020 3 次提交
  10. 03 9月, 2020 2 次提交
  11. 24 8月, 2020 1 次提交
  12. 17 8月, 2020 3 次提交
  13. 01 8月, 2020 1 次提交
  14. 02 7月, 2020 1 次提交
  15. 06 2月, 2020 1 次提交
  16. 10 12月, 2019 1 次提交
  17. 17 9月, 2019 1 次提交
  18. 13 9月, 2019 1 次提交
  19. 21 8月, 2019 1 次提交
  20. 07 8月, 2019 4 次提交
  21. 02 8月, 2019 1 次提交
    • S
      ASoC: Remove dev_err() usage after platform_get_irq() · cf9441ad
      Stephen Boyd 提交于
      We don't need dev_err() messages when platform_get_irq() fails now that
      platform_get_irq() prints an error message itself when something goes
      wrong. Let's remove these prints with a simple semantic patch.
      
      // <smpl>
      @@
      expression ret;
      struct platform_device *E;
      @@
      
      ret =
      (
      platform_get_irq(E, ...)
      |
      platform_get_irq_byname(E, ...)
      );
      
      if ( \( ret < 0 \| ret <= 0 \) )
      {
      (
      -if (ret != -EPROBE_DEFER)
      -{ ...
      -dev_err(...);
      -... }
      |
      ...
      -dev_err(...);
      )
      ...
      }
      // </smpl>
      
      While we're here, remove braces on if statements that only have one
      statement (manually).
      
      Cc: Liam Girdwood <lgirdwood@gmail.com>
      Cc: Mark Brown <broonie@kernel.org>
      Cc: Jaroslav Kysela <perex@perex.cz>
      Cc: Takashi Iwai <tiwai@suse.com>
      Cc: alsa-devel@alsa-project.org
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Signed-off-by: NStephen Boyd <swboyd@chromium.org>
      Link: https://lore.kernel.org/r/20190730181557.90391-50-swboyd@chromium.orgSigned-off-by: NMark Brown <broonie@kernel.org>
      cf9441ad
  22. 22 7月, 2019 3 次提交
  23. 08 5月, 2019 1 次提交
  24. 26 4月, 2019 3 次提交
  25. 19 1月, 2019 1 次提交
  26. 03 5月, 2018 1 次提交
  27. 14 2月, 2017 1 次提交