1. 17 9月, 2020 2 次提交
  2. 03 9月, 2020 2 次提交
  3. 24 8月, 2020 1 次提交
  4. 17 8月, 2020 3 次提交
  5. 01 8月, 2020 1 次提交
  6. 02 7月, 2020 1 次提交
  7. 06 2月, 2020 1 次提交
  8. 10 12月, 2019 1 次提交
  9. 17 9月, 2019 1 次提交
  10. 13 9月, 2019 1 次提交
  11. 21 8月, 2019 1 次提交
  12. 07 8月, 2019 4 次提交
  13. 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
  14. 22 7月, 2019 3 次提交
  15. 08 5月, 2019 1 次提交
  16. 26 4月, 2019 3 次提交
  17. 19 1月, 2019 1 次提交
  18. 03 5月, 2018 1 次提交
  19. 14 2月, 2017 1 次提交
  20. 17 8月, 2016 1 次提交
  21. 05 5月, 2016 2 次提交
  22. 23 1月, 2016 1 次提交
  23. 18 12月, 2015 1 次提交
    • Z
      ASoC: fsl_sai: fix no frame clk in master mode · 3e3f8bd5
      Zidan Wang 提交于
      After several open/close sai test with ctrl+c, there will be
      I/O error. The SAI can't work anymore, can't recover. There
      will be no frame clock. With adding the software reset in
      trigger stop, the issue can be fixed.
      
      This is a hardware bug/errata and reset is the only option.
      
      According to the reference manual, the software reset doesn't
      reset any control register but only internal hardware logics
      such as bit clock generator, status flags, and FIFO pointers.
      (Our purpose is just to reset the clock generator while the
      software reset is the only way to do that.)
      
      Since slave mode doesn't use the clock generator, only apply
      the reset procedure to the master mode.
      
      For asynchronous mode, TX will not be reset when RX is still
      running. In this case, i can't reproduce this issue.
      Signed-off-by: NZidan Wang <zidan.wang@freescale.com>
      Acked-by: NNicolin Chen <nicoleotsuka@gmail.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      3e3f8bd5
  24. 25 11月, 2015 2 次提交
  25. 18 11月, 2015 2 次提交
  26. 16 11月, 2015 1 次提交