1. 03 1月, 2018 1 次提交
  2. 20 12月, 2017 2 次提交
  3. 11 12月, 2017 1 次提交
  4. 07 12月, 2017 3 次提交
  5. 05 12月, 2017 4 次提交
  6. 01 12月, 2017 2 次提交
  7. 29 11月, 2017 3 次提交
  8. 27 11月, 2017 2 次提交
  9. 07 11月, 2017 1 次提交
    • A
      ASoC: intel: initialize return value properly · cc20c4df
      Arnd Bergmann 提交于
      When CONFIG_SND_SOC_HDAC_HDMI is disabled, we can run into an
      uninitialized variable:
      
      sound/soc/intel/skylake/skl.c: In function 'skl_resume':
      sound/soc/intel/skylake/skl.c:326:6: error: 'ret' may be used uninitialized in this function [-Werror=maybe-uninitialized]
      
      I have run into this on today's linux-next kernel, but it appears
      that this is an older problem that was just hard to trigger
      with randconfig builds as CONFIG_SND_SOC_HDAC_HDMI would in
      effect be impossible to disable when having SND_SOC_INTEL_SKYLAKE
      enabled.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-By: NVinod Koul <vinod.koul@intel.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      cc20c4df
  10. 02 11月, 2017 2 次提交
    • A
      ASoC: intel: include linux/module.h as needed · adebc532
      Arnd Bergmann 提交于
      The MODULE_DESCRIPTION() macro is only available when including
      the linux/module.h header. Apparently this is included indirectly
      from sst-firmware.c in some configurations, but not in others:
      
      sound/soc/intel/common/sst-firmware.c:1278:20: error: expected declaration specifiers or '...' before string constant
       MODULE_DESCRIPTION("Intel SST Firmware Loader");
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
      sound/soc/intel/common/sst-firmware.c:1279:16: error: expected declaration specifiers or '...' before string constant
      
      This adds the missing include line.
      
      Fixes: a395bdd6 ("ASoC: intel: Fix sst-dsp dependency on dw stuff")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      adebc532
    • A
      ASoC: Intel: fix Kconfig dependencies · f7a88db6
      Arnd Bergmann 提交于
      I ran into multiple problems during randconfig builds of the
      recently changed Kconfig logic for Intel ASoC drivers:
      
      - Building without DMADEVICES doesn't work in general
      - With that dependency added, we can relax the 'depends
        on X86' again and allow compile-testing, except for
        SND_SST_ATOM_HIFI2_PLATFORM, which depends on X86
        for asm/platform_sst_audio.h
      - Skylake requires SND_SOC_INTEL_SST_ACPI, so we
        have to depend on ACPI in turn
      - Haswell needs SND_DMA_SGBUF for snd_sgbuf_aligned_pages()
      
      With the new set of dependencies, I no longer get any build
      failures.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      f7a88db6
  11. 31 10月, 2017 2 次提交
  12. 26 10月, 2017 2 次提交
  13. 25 10月, 2017 1 次提交
  14. 23 10月, 2017 1 次提交
  15. 21 10月, 2017 10 次提交
  16. 18 10月, 2017 3 次提交