1. 26 10月, 2016 1 次提交
  2. 25 10月, 2016 2 次提交
  3. 21 10月, 2016 1 次提交
  4. 29 9月, 2016 3 次提交
  5. 28 9月, 2016 9 次提交
  6. 27 9月, 2016 8 次提交
  7. 26 9月, 2016 1 次提交
  8. 25 9月, 2016 9 次提交
  9. 22 9月, 2016 1 次提交
    • A
      ASoC: cq93vc: duplicated callback function goes to component · 8180bd56
      Arnd Bergmann 提交于
      A cleanup removed a couple of members from struct snd_soc_codec_driver
      after changing codec drivers to no longer use them, but one codec
      was missed in the process, giving a build error:
      
      sound/soc/codecs/cq93vc.c:134:2: error: unknown field 'controls' specified in initializer
        .controls = cq93vc_snd_controls,
      
      This moves the members from the cq93vc codec driver to its component driver
      just like the other codecs already had.
      
      Fixes: 8073aefa ("ASoC: remove codec duplicated callback function")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      8180bd56
  10. 20 9月, 2016 2 次提交
  11. 16 9月, 2016 1 次提交
    • A
      ASoC: rt5663: refine error handling · 56efaed5
      Arnd Bergmann 提交于
      The newly added rt5663 codec driver introduces a couple of warnings
      when built with -Wmaybe-uninitialized:
      
      codecs/rt5663.c: In function 'rt5663_set_tdm_slot':
      codecs/rt5663.c:2680:2: error: 'reg' may be used uninitialized in this function [-Werror=maybe-uninitialized]
      codecs/rt5663.c: In function 'rt5663_set_dai_pll':
      codecs/rt5663.c:2556:12: error: 'shift' may be used uninitialized in this function [-Werror=maybe-uninitialized]
      codecs/rt5663.c:2596:2: error: 'mask' may be used uninitialized in this function [-Werror=maybe-uninitialized]
      
      We can avoid those warnings by always returning an error
      from the switch() statements instead of falling through
      with an uninitialized variable when we hit an unexpected
      case.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Fixes: df7c5216 ("ASoC: add rt5663 codec driver")
      Signed-off-by: NMark Brown <broonie@kernel.org>
      56efaed5
  12. 15 9月, 2016 2 次提交