All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error
@ 2019-01-11 10:20 Axel Lin
  2019-01-14 13:53 ` Srinivas Kandagatla
  2019-01-14 23:03 ` Applied "ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error" to the asoc tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2019-01-11 10:20 UTC (permalink / raw)
  To: Mark Brown; +Cc: Axel Lin, alsa-devel, Srinivas Kandagatla, Liam Girdwood

Fix below build error:
ERROR: "__devm_regmap_init_mmio_clk" [sound/soc/codecs/snd-soc-msm8916-digital.ko] undefined!

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
v2: select REGMAP_MMIO is for SND_SOC_MSM8916_WCD_DIGITAL, not SND_SOC_MSM8916_WCD_ANALOG.
 sound/soc/codecs/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig
index 87cb9c51e6f5..17049b9bc178 100644
--- a/sound/soc/codecs/Kconfig
+++ b/sound/soc/codecs/Kconfig
@@ -706,6 +706,7 @@ config SND_SOC_MSM8916_WCD_ANALOG
 
 config SND_SOC_MSM8916_WCD_DIGITAL
 	tristate "Qualcomm MSM8916 WCD DIGITAL Codec"
+	select REGMAP_MMIO
 
 config SND_SOC_PCM1681
 	tristate "Texas Instruments PCM1681 CODEC"
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error
  2019-01-11 10:20 [PATCH v2] ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error Axel Lin
@ 2019-01-14 13:53 ` Srinivas Kandagatla
  2019-01-14 23:03 ` Applied "ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error" to the asoc tree Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Srinivas Kandagatla @ 2019-01-14 13:53 UTC (permalink / raw)
  To: Axel Lin, Mark Brown; +Cc: alsa-devel, Liam Girdwood

Thanks for the Patch!

On 11/01/2019 10:20, Axel Lin wrote:
> Fix below build error:
> ERROR: "__devm_regmap_init_mmio_clk" [sound/soc/codecs/snd-soc-msm8916-digital.ko] undefined!
> 
> Signed-off-by: Axel Lin <axel.lin@ingics.com>


Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Applied "ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error" to the asoc tree
  2019-01-11 10:20 [PATCH v2] ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error Axel Lin
  2019-01-14 13:53 ` Srinivas Kandagatla
@ 2019-01-14 23:03 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2019-01-14 23:03 UTC (permalink / raw)
  To: Axel Lin; +Cc: alsa-devel, Mark Brown, Srinivas Kandagatla, Liam Girdwood

The patch

   ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error

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 5b86fa6d2903c41c3c3dbff4def76a5b8bbe0660 Mon Sep 17 00:00:00 2001
From: Axel Lin <axel.lin@ingics.com>
Date: Fri, 11 Jan 2019 18:20:40 +0800
Subject: [PATCH] ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build
 error

Fix below build error:
ERROR: "__devm_regmap_init_mmio_clk" [sound/soc/codecs/snd-soc-msm8916-digital.ko] undefined!

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig
index 87ecb38e57f4..71e6e123a115 100644
--- a/sound/soc/codecs/Kconfig
+++ b/sound/soc/codecs/Kconfig
@@ -706,6 +706,7 @@ config SND_SOC_MSM8916_WCD_ANALOG
 
 config SND_SOC_MSM8916_WCD_DIGITAL
 	tristate "Qualcomm MSM8916 WCD DIGITAL Codec"
+	select REGMAP_MMIO
 
 config SND_SOC_PCM1681
 	tristate "Texas Instruments PCM1681 CODEC"
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-01-14 23:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-11 10:20 [PATCH v2] ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error Axel Lin
2019-01-14 13:53 ` Srinivas Kandagatla
2019-01-14 23:03 ` Applied "ASoC: msm8916-wcd-digital: Select REGMAP_MMIO to fix build error" to the asoc tree Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.