1. 19 2月, 2019 1 次提交
  2. 07 2月, 2019 2 次提交
  3. 02 2月, 2019 3 次提交
  4. 08 1月, 2019 1 次提交
  5. 04 1月, 2019 1 次提交
  6. 13 12月, 2018 1 次提交
  7. 04 12月, 2018 3 次提交
  8. 28 11月, 2018 1 次提交
  9. 21 11月, 2018 2 次提交
  10. 09 11月, 2018 1 次提交
    • K
      ASoC: rsnd: use ring buffer for rsnd_mod_name() · 0246c661
      Kuninori Morimoto 提交于
      commit c0ea089d ("ASoC: rsnd: rsnd_mod_name() handles both name and
      ID") merged "name" and "ID" on rsnd_mod_name() to handle sub-ID
      (= for CTU/BUSIF).
      Then, it decided to share static char to avoid pointless memory.
      But, it doesn't work correctry in below case, because last called
      name will be used.
      
      	dev_xxx(dev, "%s is connected to %s\n",
      		rsnd_mod_name(mod_a),  /* ssiu[00] */
      		rsnd_mod_name(mod_b)); /* ssi[0]   */
      	->
      	rcar_sound ec500000.sound: ssi[0] is connected to ssi[0]
      	                           ~~~~~~                 ~~~~~~
      We still don't want to have pointless memory, so let's use ring buffer.
      16byte x 5 is very enough for this purpose.
      
      	dev_xxx(dev, "%s is connected to %s\n",
      		rsnd_mod_name(mod_a),  /* ssiu[00] */
      		rsnd_mod_name(mod_b)); /* ssi[0]   */
      	->
      	rcar_sound ec500000.sound: ssiu[00] is connected to ssi[0]
      	                           ~~~~~~~~                 ~~~~~~
      Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      0246c661
  11. 07 11月, 2018 7 次提交
  12. 05 11月, 2018 3 次提交
  13. 31 10月, 2018 1 次提交
  14. 18 10月, 2018 2 次提交
  15. 10 10月, 2018 1 次提交
  16. 22 9月, 2018 1 次提交
  17. 21 9月, 2018 1 次提交
  18. 10 9月, 2018 1 次提交
  19. 06 9月, 2018 4 次提交
  20. 03 9月, 2018 3 次提交