alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Cc: alsa-devel@alsa-project.org, Mark Brown <broonie@kernel.org>,
	kbuild test robot <lkp@intel.com>,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Subject: Applied "ASoC: Intel: boards: drop reverse deps for SND_HDA_CODEC_HDMI" to the asoc tree
Date: Fri, 13 Mar 2020 16:18:03 +0000	[thread overview]
Message-ID: 
Message-ID: <20200313161803.Y-94C19YBus8aLYlMSt-n2kTtF7A83E4c7rZTpbg7eA@z> (raw)
In-Reply-To: 

The patch

   ASoC: Intel: boards: drop reverse deps for SND_HDA_CODEC_HDMI

has been applied to the asoc tree at

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.  

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

From 5c82813ce43e3a2017c43b32a57dc7a8802d9ad4 Mon Sep 17 00:00:00 2001
From: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Date: Thu, 12 Mar 2020 14:48:50 -0500
Subject: [PATCH] ASoC: Intel: boards: drop reverse deps for SND_HDA_CODEC_HDMI

Having a reverse dependency to a config that has its own additional
dependencies, is generally not recommended. And this applies to
select statements for SND_HDA_CODEC_HDMI, e.g. the case where SND_HDA
and SND_SOC_SOF_HDA are built as modules, but the machine driver is
built-in, leading to compile errors (reported as
i386-randconfig-e003-20200206).

Give up on trying to define different dependencies based on SOF/SST
selection, and simply add a "depends on" for SND_HDA_CODEC_HDMI. This
fixes the issue with randconfigs. Only downside is that SND_HDA_CODEC_HDMI
may be built unnecessarily in some cases, but this seems like the lesser
evil.

Fixes: aa2b4a5 ('ASoC: Intel: boards: fix incorrect HDMI Kconfig dependency')
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Link: https://lore.kernel.org/r/20200312194859.4051-2-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/intel/boards/Kconfig | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/sound/soc/intel/boards/Kconfig b/sound/soc/intel/boards/Kconfig
index 755e1de19df9..67d85a7be559 100644
--- a/sound/soc/intel/boards/Kconfig
+++ b/sound/soc/intel/boards/Kconfig
@@ -289,7 +289,6 @@ config SND_SOC_INTEL_DA7219_MAX98357A_GENERIC
 	select SND_SOC_DA7219
 	select SND_SOC_MAX98357A
 	select SND_SOC_DMIC
-	select SND_HDA_CODEC_HDMI if SND_SOC_SOF_HDA_AUDIO_CODEC
 	select SND_SOC_HDAC_HDMI
 
 config SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON
@@ -302,6 +301,7 @@ config SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH
 	tristate "Broxton with DA7219 and MAX98357A in I2S Mode"
 	depends on I2C && ACPI
 	depends on MFD_INTEL_LPSS || COMPILE_TEST
+	depends on SND_HDA_CODEC_HDMI
 	select SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON
 	help
 	   This adds support for ASoC machine driver for Broxton-P platforms
@@ -402,6 +402,7 @@ config SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH
 	tristate "GLK with DA7219 and MAX98357A in I2S Mode"
 	depends on I2C && ACPI
 	depends on MFD_INTEL_LPSS || COMPILE_TEST
+	depends on SND_HDA_CODEC_HDMI
 	select SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON
 	help
 	   This adds support for ASoC machine driver for Geminilake platforms
@@ -413,10 +414,10 @@ config SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH
 	tristate "GLK with RT5682 and MAX98357A in I2S Mode"
 	depends on I2C && ACPI
 	depends on MFD_INTEL_LPSS || COMPILE_TEST
+	depends on SND_HDA_CODEC_HDMI
 	select SND_SOC_RT5682
 	select SND_SOC_MAX98357A
 	select SND_SOC_DMIC
-	select SND_HDA_CODEC_HDMI if SND_SOC_SOF_HDA_AUDIO_CODEC
 	select SND_SOC_HDAC_HDMI
 	help
 	   This adds support for ASoC machine driver for Geminilake platforms
@@ -430,7 +431,7 @@ if SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC || SND_SOC_SOF_HDA_AUDIO_CODEC
 
 config SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH
 	tristate "SKL/KBL/BXT/APL with HDA Codecs"
-	select SND_HDA_CODEC_HDMI if SND_SOC_SOF_HDA_AUDIO_CODEC
+	depends on SND_HDA_CODEC_HDMI
 	select SND_SOC_HDAC_HDMI
 	select SND_SOC_DMIC
 	# SND_SOC_HDAC_HDA is already selected
@@ -448,9 +449,9 @@ config SND_SOC_INTEL_SOF_RT5682_MACH
 	depends on I2C && ACPI
 	depends on (SND_SOC_SOF_HDA_LINK && (MFD_INTEL_LPSS || COMPILE_TEST)) ||\
 		   (SND_SOC_SOF_BAYTRAIL && (X86_INTEL_LPSS || COMPILE_TEST))
+	depends on SND_HDA_CODEC_HDMI
 	select SND_SOC_RT5682
 	select SND_SOC_DMIC
-	select SND_HDA_CODEC_HDMI if SND_SOC_SOF_HDA_AUDIO_CODEC
 	select SND_SOC_HDAC_HDMI
 	help
 	   This adds support for ASoC machine driver for SOF platforms
@@ -490,11 +491,11 @@ config SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH
 	tristate "CML with RT1011 and RT5682 in I2S Mode"
 	depends on I2C && ACPI
 	depends on MFD_INTEL_LPSS || COMPILE_TEST
+	depends on SND_HDA_CODEC_HDMI
 	select SND_SOC_RT1011
 	select SND_SOC_RT5682
 	select SND_SOC_DMIC
 	select SND_SOC_HDAC_HDMI
-	select SND_HDA_CODEC_HDMI if SND_SOC_SOF_HDA_AUDIO_CODEC
 	help
 	  This adds support for ASoC machine driver for SOF platform with
 	  RT1011 + RT5682 I2S codec.
@@ -509,10 +510,10 @@ config SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH
 	tristate "SOF with DA7219 and MAX98373 in I2S Mode"
 	depends on I2C && ACPI
 	depends on MFD_INTEL_LPSS || COMPILE_TEST
+	depends on SND_HDA_CODEC_HDMI
 	select SND_SOC_DA7219
 	select SND_SOC_MAX98373
 	select SND_SOC_DMIC
-	select SND_HDA_CODEC_HDMI if SND_SOC_SOF_HDA_AUDIO_CODEC
 	help
 	  This adds support for ASoC machine driver for SOF platforms
 	  with DA7219 + MAX98373 I2S audio codec.
-- 
2.20.1


             reply	other threads:[~2020-03-13 16:25 UTC|newest]

Thread overview: 116+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-13 16:18 Applied "ASoC: Intel: boards: drop reverse deps for SND_HDA_CODEC_HDMI" to the asoc tree Mark Brown
  -- strict thread matches above, loose matches on Subject: below --
2020-04-14 14:48 Applied "ASoC: soc: use asoc_rtd_to_cpu() / asoc_rtd_to_codec() macro for DAI pointer" " Mark Brown
2020-04-14 14:48 Applied "ASoC: soc-core: set rtd->num_cpu/codec at soc_new_pcm_runtime()" " Mark Brown
2020-04-14 14:48 Applied "ASoC: soc-core: tidyup soc_new_pcm_runtime() rtd setups" " Mark Brown
2020-04-14 14:48 Applied "ASoC: soc-core: remove cpu_dai/codec_dai/cpu_dais/codec_dais" " Mark Brown
2020-04-14 14:46 Applied "ASoC: rockchip-spdif: add #sound-dai-cells property" " Mark Brown
2020-04-14 14:46 Applied "ASoC: rockchip-spdif: add power-domains " Mark Brown
2020-04-14 14:46 Applied "ASoC: wsa881x: mark read_only_wordlength flag" " Mark Brown
2020-04-14 11:59 Applied "ASoC: tas571x: disable regulators on failed probe" " Mark Brown
2020-03-27 15:34 Applied "ASoC: SOF: Intel: add SoundWire configuration interface" " Mark Brown
2020-03-27 15:34 Applied "ASoC: SOF: IPC: dai-intel: move ALH declarations in header file" " Mark Brown
2020-03-27 15:34 Applied "ASoC: SOF: Intel: hda: add SoundWire stream config/free callbacks" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: disable SoundWire interrupts on suspend" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: merge IPC, stream and SoundWire interrupt handlers" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: add parameter to control SoundWire clock stop quirks" " Mark Brown
2020-03-27 15:33 Applied "ASoC: SOF: Intel: hda: add WAKEEN interrupt support for SoundWire" " Mark Brown
2020-03-27 15:33 Applied "Asoc: SOF: Intel: hda: check SoundWire wakeen interrupt in irq thread" " Mark Brown
2020-03-26 19:05 Applied "ASoC: SOF: (cosmetic) use for_each_pcm_streams() in sof_dai_load()" " Mark Brown
2020-03-26 19:05 Applied "ASoC: SOF: fix uninitialised "work" with VirtIO" " Mark Brown
2020-03-25 21:33 Applied "ASoC: Intel: broadwell: Revert back SSP0 link to use dummy components" " Mark Brown
2020-03-24 17:16 Applied "dt-bindings: sound: convert rockchip i2s bindings to yaml" " Mark Brown
2020-03-24 17:16 Applied "dt-bindings: sound: rockchip-i2s: add #sound-dai-cells property" " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-core: Merge CPU/Codec DAIs" " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-core: Merge for_each_rtd_cpu/codec_dais()" " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-dapm: " Mark Brown
2020-03-20 20:45 Applied "ASoC: soc-core: Merge CPU/Codec for soc_dai_pcm_new()" " Mark Brown
2020-03-18 21:41 Applied "ASoC: codecs: wsa881x: remove soundwire stream handling" " Mark Brown
2020-03-16 18:08 Applied "ALSA: compress: add wma codec profiles" " Mark Brown
2020-03-16 18:08 Applied "ALSA: compress: Add wma decoder params" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm: pass codec profile to q6asm_open_write" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm: add support to wma config" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm-dai: add support to wma decoder" " Mark Brown
2020-03-16 18:08 Applied "ALSA: compress: add alac & ape decoder params" " Mark Brown
2020-03-16 18:08 Applied "ASoC: qcom: q6asm: add support for alac and ape configs" " Mark Brown
2020-03-16 18:07 Applied "ALSA: compress: bump the version" " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: sof_pcm512x: drop reverse deps for SND_HDA_CODEC_HDMI" " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: sof_pcm512x: make HDMI optional for all platforms" " Mark Brown
2020-03-13 16:17 Applied "ASoC: SOF: Intel: hda: remove SND_SOC_SOF_HDA_COMMON_HDMI_CODEC" " Mark Brown
2020-03-13 16:17 Applied "ASoC: codecs: hdac_hdmi: (cosmetic) remove redundant variable initialisations" " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: skylake: " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: (cosmetic) simplify structure member access" " Mark Brown
2020-03-13 16:17 Applied "ASoC: Intel: sof_da7219_max98373: Add support for max98360a speaker amp" " Mark Brown
2020-03-12 13:12 Applied "ASoC: SOF: Intel: Fix stream cleanup on hw free" " Mark Brown
2020-03-11 18:00 Applied "ASoC: zte: zx-tdm: remove redundant variables dev" " Mark Brown
2020-03-09 14:03 Applied "ASoC: jz4740-i2s: Fix divider written at incorrect offset in register" " Mark Brown
2020-03-06 15:03 Applied "ALSA: pcm: Add a standalone version of snd_pcm_limit_hw_rates" " Mark Brown
2020-03-06 15:03 Applied "ASoC: pcm: Export parameter intersection logic" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: move dpcm_fe_dai_close()" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: add dpcm_fe_dai_cleanup()" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: use snd_soc_dai_get_pcm_stream() at dpcm_set_fe_runtime()" " Mark Brown
2020-03-06 15:03 Applied "ASoC: soc-pcm: tidyup dulicate handing at dpcm_fe_dai_startup()" " Mark Brown
2020-03-05 13:15 Applied "ASoC: soc-pcm: use defined stream" " Mark Brown
2020-03-05 13:15 Applied "ASoC: soc-pcm: remove duplicate be check from dpcm_add_paths()" " Mark Brown
2020-03-04 13:39 Applied "ASoC: stm32: sai: manage rebind issue" " Mark Brown
2020-03-03 17:07 Applied "ASoC: amd: Fix compile warning of argument type" " Mark Brown
2020-03-02 14:36 Applied "ASoC: rt1015: set snd_soc_dai_ops in rt1015_dai driver" " Mark Brown
2020-02-26 18:48 Applied "ASoC: tas2562: Fix sample rate error message" " Mark Brown
2020-02-26 18:47 Applied "ASoC: Add dapm_add_valid_dai_widget helper" " Mark Brown
2020-02-26 18:47 Applied "ASoC: Add multiple CPU DAI support in DAPM" " Mark Brown
2020-02-26 18:47 Applied "ASoC: dt-bindings: Add TAS2563 compatible to the TAS2562 binding" " Mark Brown
2020-02-26 18:47 Applied "ASoC: tas2562: Add entries for the TAS2563 audio amplifier" " Mark Brown
2020-02-20 22:18 Applied "dt-bindings: sound: Add TLV320ADCx140 dt bindings" " Mark Brown
2020-02-19 20:57 Applied "ASoC: soundwaire: qcom: use for_each_rtd_codec_dai() macro" " Mark Brown
2020-02-19 20:57 Applied "ASoC: qcom: sdm845: " Mark Brown
2020-02-19 20:57 Applied "ASoC: qcom: apq8016_sbc: " Mark Brown
2020-02-19 20:57 Applied "ASoC: intel: cml_rt1011_rt5682: " Mark Brown
2020-02-19 20:57 Applied "ASoC: intel: kbl_da7219_max98927: " Mark Brown
2020-02-19 20:57 Applied "ASoC: mediatek: mt8183-da7219-max98357: " Mark Brown
2020-02-19 20:57 Applied "ASoC: dt-bindings: Make RK3328 codec GPIO explicit" " Mark Brown
2020-02-19 20:56 Applied "ASoC: meson: add t9015 internal codec binding documentation" " Mark Brown
2020-02-19  0:11 Applied "ASoC: tas2562: Return invalid for when bitwidth is invalid" " Mark Brown
2020-02-19  0:11 Applied "ALSA: core: Expand DMA buffer information" " Mark Brown
2020-02-19  0:11 Applied "ALSA: core: Implement compress page allocation and free routines" " Mark Brown
2020-02-19  0:10 Applied "ASoC: SOF: Implement Probe IPC API" " Mark Brown
2020-02-19  0:10 Applied "ASoC: SOF: Generic probe compress operations" " Mark Brown
2020-02-19  0:10 Applied "ASoC: SOF: Provide probe debugfs support" " Mark Brown
2020-02-19  0:10 Applied "ASoC: SOF: Intel: Add Probe compress CPU DAIs" " Mark Brown
2020-02-19  0:10 Applied "ASoC: rt5682: Add DAI clock binding info for WCLK/BCLK CCF usage" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: move dai_get_widget()" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: use dai_get_widget() at dpcm_get_be()" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: use dai_get_widget() at dpcm_end_walk_at_be()" " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: use dpcm_get_be() " Mark Brown
2020-02-19  0:10 Applied "ASoC: soc-pcm: remove soc_dpcm_be_digital_mute()" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: remove snd_soc_dpcm_be_get/set_state()" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: add snd_soc_dpcm_can_be() and remove duplicate code" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: use goto and remove multi return" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: merge playback/cature_active into stream_active" " Mark Brown
2020-02-19  0:09 Applied "ALSA: pcm.h: add for_each_pcm_streams()" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-core: use for_each_pcm_streams() macro" " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-pcm: " Mark Brown
2020-02-19  0:09 Applied "ASoC: soc-generic-dmaengine-pcm: " Mark Brown
2020-02-19  0:09 Applied "ASoC: dwc: dwc-i2s: " Mark Brown
2020-02-19  0:09 Applied "ASoC: fsl: fsl_asrc_dma: " Mark Brown
2020-02-19  0:09 Applied "ASoC: qcom: lpass-platform: " Mark Brown
2020-02-19  0:09 Applied "ASoC: sof: sof-audio: " Mark Brown
2020-02-19  0:09 Applied "ALSA: usx2y: " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: change supported formats of DL2 and UL1" " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: pull TDM GPIO pins down when probed" " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: support TDM out and 8ch I2S out" " Mark Brown
2020-02-13 13:32 [alsa-devel] Applied "ASoC: mediatek: mt8183-da7219: apply some refactors" " Mark Brown
2020-01-15 14:12 [alsa-devel] Applied "regulator fix for "regulator: core: Add regulator_is_equal() helper"" " Mark Brown
2020-01-13 16:11 [alsa-devel] Applied "ASoC: atmel: fix build error with CONFIG_SND_ATMEL_SOC_DMA=m" " Mark Brown
2020-01-13 16:11 [alsa-devel] Applied "ASoC: rt1308-sdw: add rt1308 SdW amplifier driver" " Mark Brown
2020-01-13 15:13 [alsa-devel] Applied "ASoC: SOF: Intel: fix HDA codec driver probe with multiple controllers" " Mark Brown
2020-01-13 15:13 [alsa-devel] Applied "ASoC: sti: fix possible sleep-in-atomic" " Mark Brown
2020-01-10 13:38 [alsa-devel] Applied "ASoC: max98090: Drop incorrectly applied duplicate commit" " Mark Brown
2019-12-27  1:08 [alsa-devel] Applied "ASoC: amd: Create multiple I2S platform device endpoint" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: dt-bindings: add dt bindings for WCD9340/WCD9341 audio codec" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add basic controls" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add playback dapm widgets" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add capture " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: wcd934x: add audio routings" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: qcom: dt-bindings: Add compatible for DB845c and Lenovo Yoga" " Mark Brown
2019-12-25 18:21 [alsa-devel] Applied "ASoC: qcom: sdm845: add support to " Mark Brown
2019-12-25  0:09 [alsa-devel] Applied "ASoC: fsl_audmix: add missed pm_runtime_disable" " Mark Brown
2019-11-18 17:48 [alsa-devel] Applied "ASoC: SOF: Intel: Fix build break" " Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to= \
    --to=broonie@kernel.org \
    --cc=alsa-devel@alsa-project.org \
    --cc=kai.vehmanen@linux.intel.com \
    --cc=lkp@intel.com \
    --cc=pierre-louis.bossart@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).