1. 07 8月, 2020 1 次提交
  2. 30 7月, 2020 1 次提交
  3. 22 7月, 2020 2 次提交
  4. 21 7月, 2020 1 次提交
  5. 18 7月, 2020 7 次提交
  6. 08 7月, 2020 1 次提交
  7. 07 7月, 2020 3 次提交
  8. 27 5月, 2020 1 次提交
  9. 13 5月, 2020 1 次提交
  10. 25 3月, 2020 1 次提交
  11. 15 2月, 2020 1 次提交
  12. 14 2月, 2020 3 次提交
  13. 11 2月, 2020 1 次提交
  14. 06 1月, 2020 1 次提交
  15. 23 11月, 2019 3 次提交
  16. 16 11月, 2019 1 次提交
  17. 16 10月, 2019 1 次提交
  18. 05 10月, 2019 1 次提交
  19. 28 8月, 2019 1 次提交
  20. 21 8月, 2019 1 次提交
  21. 15 8月, 2019 1 次提交
    • S
      Input: remove dev_err() usage after platform_get_irq() · 0bec8b7e
      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).
      Signed-off-by: NStephen Boyd <swboyd@chromium.org>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      0bec8b7e
  22. 10 8月, 2019 1 次提交
  23. 25 7月, 2019 1 次提交
  24. 24 7月, 2019 4 次提交