1. 15 Jun, 2015 3 commits
  2. 12 Jun, 2015 2 commits
  3. 02 Jun, 2015 6 commits
  4. 28 May, 2015 2 commits
  5. 22 May, 2015 7 commits
  6. 06 May, 2015 7 commits
  7. 05 May, 2015 1 commit
    • Fang, Yang A's avatar
      ASoC: Intel: Fixed kbuild warnings · 26f63c69
      Fang, Yang A authored
      fix following sparse warnings: (new ones prefixed by >>)
      
      >> sound/soc/intel/boards/cht_bsw_max98090_ti.c:168:37: sparse:
      >> incorrect type in argument 2 (different base types)
         sound/soc/intel/boards/cht_bsw_max98090_ti.c:168:37:    expected
      unsigned int [unsigned] val
         sound/soc/intel/boards/cht_bsw_max98090_ti.c:168:37:    got
      restricted snd_pcm_format_t [usertype] <noident>
      Signed-off-by: default avatarFang, Yang A <yang.a.fang@intel.com>
      Signed-off-by: default avatarMark Brown <broonie@kernel.org>
      26f63c69
  8. 04 May, 2015 3 commits
  9. 01 May, 2015 5 commits
  10. 30 Apr, 2015 1 commit
  11. 29 Apr, 2015 1 commit
  12. 28 Apr, 2015 1 commit
  13. 27 Apr, 2015 1 commit
    • Fang, Yang A's avatar
      ASoC: rt5645: fixed kbuild err · baf2a0e1
      Fang, Yang A authored
      kbuild robot reports following error/warnings
      
         sound/soc/codecs/rt5645.c: In function 'rt5645_i2c_probe':
      >> sound/soc/codecs/rt5645.c:2720:4: error: implicit declaration of
      >> function 'devm_gpiod_get_index'
      >> [-Werror=implicit-function-declaration]
             gpiod = devm_gpiod_get_index(&i2c->dev, "rt5645", 0);
             ^
      >> sound/soc/codecs/rt5645.c:2720:10: warning: assignment makes pointer
      >> from integer without a cast
             gpiod = devm_gpiod_get_index(&i2c->dev, "rt5645", 0);
                   ^
      >> sound/soc/codecs/rt5645.c:2722:4: error: implicit declaration of
      >> function 'gpiod_direction_input'
      >> [-Werror=implicit-function-declaration]
             if (IS_ERR(gpiod) || gpiod_direction_input(gpiod)) {
             ^
      >> sound/soc/codecs/rt5645.c:2726:5: error: implicit declaration of
      >> function 'desc_to_gpio' [-Werror=implicit-function-declaration]
              rt5645->pdata.hp_det_gpio = desc_to_gpio(gpiod);
              ^
      >> sound/soc/codecs/rt5645.c:2728:7: error: implicit declaration of
      >> function 'gpiod_is_active_low'
      >> [-Werror=implicit-function-declaration]
                = !gpiod_is_active_low(gpiod);
                ^
         cc1: some warnings being treated as errors
      Signed-off-by: default avatarFang, Yang A <yang.a.fang@intel.com>
      Signed-off-by: default avatarMark Brown <broonie@kernel.org>
      baf2a0e1