1. 28 11月, 2017 2 次提交
  2. 10 8月, 2017 1 次提交
    • B
      ASoC: codecs: add const to snd_soc_codec_driver structures · a180ba45
      Bhumika Goyal 提交于
      Declare snd_soc_codec_driver structures as const as they are only passed
      as an argument to the function snd_soc_register_codec. This argument is
      of type const, so declare the structures with this property as const.
      In file codecs/sn95031.c, snd_soc_codec_driver structure is also used in
      a copy operation along with getting passed to snd_soc_register_codec.
      So, it can be made const too.
      Done using Coccinelle:
      
      @match disable optional_qualifier@
      identifier s;
      position p;
      @@
      static struct snd_soc_codec_driver s@p={...};
      
      @good1@
      identifier match.s;
      position p;
      @@
      snd_soc_register_codec(...,&s@p,...)
      
      @bad@
      identifier match.s;
      position p!={match.p,good1.p};
      @@
      s@p
      
      @depends on !bad disable optional_qualifier@
      identifier match.s;
      @@
      static
      +const
      struct snd_soc_codec_driver s={...};
      Signed-off-by: NBhumika Goyal <bhumirks@gmail.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      a180ba45
  3. 17 7月, 2017 1 次提交
  4. 04 4月, 2017 1 次提交
  5. 08 8月, 2016 1 次提交
  6. 19 5月, 2016 1 次提交
  7. 11 5月, 2016 1 次提交
  8. 25 12月, 2015 1 次提交
  9. 15 5月, 2015 1 次提交
  10. 13 5月, 2015 1 次提交
  11. 28 4月, 2015 2 次提交
  12. 15 1月, 2015 1 次提交
  13. 27 11月, 2014 1 次提交
  14. 20 10月, 2014 1 次提交
  15. 15 4月, 2014 1 次提交
  16. 23 2月, 2014 1 次提交
  17. 07 2月, 2014 1 次提交
  18. 20 12月, 2013 4 次提交
  19. 14 10月, 2013 1 次提交
  20. 07 10月, 2013 1 次提交
  21. 17 9月, 2013 1 次提交
  22. 30 7月, 2013 1 次提交
  23. 22 7月, 2013 1 次提交
  24. 19 7月, 2013 1 次提交
  25. 24 6月, 2013 3 次提交
  26. 12 1月, 2013 5 次提交
  27. 09 12月, 2012 1 次提交
  28. 05 10月, 2012 1 次提交
  29. 22 9月, 2012 1 次提交