diff options
| author | Takashi Iwai <tiwai@suse.de> | 2013-09-11 12:38:45 +0200 | 
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2013-09-11 12:38:45 +0200 | 
| commit | 3d0049e8529adaa36c38a7b400792f6c37b66c92 (patch) | |
| tree | 7d2e30a5e3f12207305ffc76d80d310c0a95fdcc /sound | |
| parent | be8cf44526d8972c2dbf6e561162dad924a712a5 (diff) | |
| parent | 2ae2caff8348378c9e464353e9860ee97583c00b (diff) | |
| download | linux-3d0049e8529adaa36c38a7b400792f6c37b66c92.tar.bz2 | |
Merge tag 'asoc-v3.12-4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus
ASoC: Fixes for v3.12
A few small fixes, nothing with any broad impact but all useful for the
affected systems.  The Kirkwood compatible string change is fixing up a
string just added in the merge window so that we don't get any changes
in released kernels.
Diffstat (limited to 'sound')
| -rw-r--r-- | sound/isa/opti9xx/opti92x-ad1848.c | 8 | ||||
| -rw-r--r-- | sound/pci/hda/patch_hdmi.c | 3 | ||||
| -rw-r--r-- | sound/pci/hda/patch_realtek.c | 1 | ||||
| -rw-r--r-- | sound/soc/atmel/atmel_ssc_dai.c | 2 | ||||
| -rw-r--r-- | sound/soc/codecs/mc13783.c | 4 | ||||
| -rw-r--r-- | sound/soc/fsl/Kconfig | 1 | ||||
| -rw-r--r-- | sound/soc/fsl/imx-audmux.c | 3 | ||||
| -rw-r--r-- | sound/soc/kirkwood/kirkwood-i2s.c | 3 | ||||
| -rw-r--r-- | sound/soc/sh/rcar/scu.c | 4 | 
9 files changed, 18 insertions, 11 deletions
diff --git a/sound/isa/opti9xx/opti92x-ad1848.c b/sound/isa/opti9xx/opti92x-ad1848.c index 103b33373fd4..6effe99bbb9c 100644 --- a/sound/isa/opti9xx/opti92x-ad1848.c +++ b/sound/isa/opti9xx/opti92x-ad1848.c @@ -173,11 +173,7 @@ MODULE_DEVICE_TABLE(pnp_card, snd_opti9xx_pnpids);  #endif	/* CONFIG_PNP */ -#ifdef OPTi93X -#define DEV_NAME "opti93x" -#else -#define DEV_NAME "opti92x" -#endif +#define DEV_NAME KBUILD_MODNAME  static char * snd_opti9xx_names[] = {  	"unknown", @@ -1167,7 +1163,7 @@ static int snd_opti9xx_pnp_resume(struct pnp_card_link *pcard)  static struct pnp_card_driver opti9xx_pnpc_driver = {  	.flags		= PNP_DRIVER_RES_DISABLE, -	.name		= "opti9xx", +	.name		= DEV_NAME,  	.id_table	= snd_opti9xx_pnpids,  	.probe		= snd_opti9xx_pnp_probe,  	.remove		= snd_opti9xx_pnp_remove, diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c index 3a15225d6982..3d8cd04455a6 100644 --- a/sound/pci/hda/patch_hdmi.c +++ b/sound/pci/hda/patch_hdmi.c @@ -1798,6 +1798,9 @@ static int generic_hdmi_build_controls(struct hda_codec *codec)  		struct snd_pcm_chmap *chmap;  		struct snd_kcontrol *kctl;  		int i; + +		if (!codec->pcm_info[pin_idx].pcm) +			break;  		err = snd_pcm_add_chmap_ctls(codec->pcm_info[pin_idx].pcm,  					     SNDRV_PCM_STREAM_PLAYBACK,  					     NULL, 0, pin_idx, &chmap); diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index d38d6a04eb67..bc07d369fac4 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -4546,6 +4546,7 @@ static const struct hda_fixup alc662_fixups[] = {  static const struct snd_pci_quirk alc662_fixup_tbl[] = {  	SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2), +	SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),  	SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),  	SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),  	SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC), diff --git a/sound/soc/atmel/atmel_ssc_dai.c b/sound/soc/atmel/atmel_ssc_dai.c index 0ecf356027f6..bb53dea85b17 100644 --- a/sound/soc/atmel/atmel_ssc_dai.c +++ b/sound/soc/atmel/atmel_ssc_dai.c @@ -649,7 +649,7 @@ static int atmel_ssc_prepare(struct snd_pcm_substream *substream,  	dma_params = ssc_p->dma_params[dir];  	ssc_writel(ssc_p->ssc->regs, CR, dma_params->mask->ssc_enable); -	ssc_writel(ssc_p->ssc->regs, IER, dma_params->mask->ssc_error); +	ssc_writel(ssc_p->ssc->regs, IDR, dma_params->mask->ssc_error);  	pr_debug("%s enabled SSC_SR=0x%08x\n",  			dir ? "receive" : "transmit", diff --git a/sound/soc/codecs/mc13783.c b/sound/soc/codecs/mc13783.c index 4d3c8fd8c5db..ea141e1d6f28 100644 --- a/sound/soc/codecs/mc13783.c +++ b/sound/soc/codecs/mc13783.c @@ -125,6 +125,10 @@ static int mc13783_write(struct snd_soc_codec *codec,  	ret = mc13xxx_reg_write(priv->mc13xxx, reg, value); +	/* include errata fix for spi audio problems */ +	if (reg == MC13783_AUDIO_CODEC || reg == MC13783_AUDIO_DAC) +		ret = mc13xxx_reg_write(priv->mc13xxx, reg, value); +  	mc13xxx_unlock(priv->mc13xxx);  	return ret; diff --git a/sound/soc/fsl/Kconfig b/sound/soc/fsl/Kconfig index 704e246f5b1e..b7ab71f2ccc1 100644 --- a/sound/soc/fsl/Kconfig +++ b/sound/soc/fsl/Kconfig @@ -198,6 +198,7 @@ config SND_SOC_IMX_SPDIF  	select SND_SOC_IMX_PCM_DMA  	select SND_SOC_FSL_SPDIF  	select SND_SOC_SPDIF +	select REGMAP_MMIO  	help  	  SoC Audio support for i.MX boards with S/PDIF  	  Say Y if you want to add support for SoC audio on an i.MX board with diff --git a/sound/soc/fsl/imx-audmux.c b/sound/soc/fsl/imx-audmux.c index ab17381cc981..d3bf71a0ec56 100644 --- a/sound/soc/fsl/imx-audmux.c +++ b/sound/soc/fsl/imx-audmux.c @@ -335,7 +335,8 @@ static int imx_audmux_probe(struct platform_device *pdev)  	if (audmux_type == IMX31_AUDMUX)  		audmux_debugfs_init(); -	imx_audmux_parse_dt_defaults(pdev, pdev->dev.of_node); +	if (of_id) +		imx_audmux_parse_dt_defaults(pdev, pdev->dev.of_node);  	return 0;  } diff --git a/sound/soc/kirkwood/kirkwood-i2s.c b/sound/soc/kirkwood/kirkwood-i2s.c index 7fce340ab3ef..0f3d73d4ef48 100644 --- a/sound/soc/kirkwood/kirkwood-i2s.c +++ b/sound/soc/kirkwood/kirkwood-i2s.c @@ -559,7 +559,8 @@ static int kirkwood_i2s_dev_remove(struct platform_device *pdev)  #ifdef CONFIG_OF  static struct of_device_id mvebu_audio_of_match[] = { -	{ .compatible = "marvell,mvebu-audio" }, +	{ .compatible = "marvell,kirkwood-audio" }, +	{ .compatible = "marvell,dove-audio" },  	{ }  };  MODULE_DEVICE_TABLE(of, mvebu_audio_of_match); diff --git a/sound/soc/sh/rcar/scu.c b/sound/soc/sh/rcar/scu.c index 184d9008cecd..2df2e9150b89 100644 --- a/sound/soc/sh/rcar/scu.c +++ b/sound/soc/sh/rcar/scu.c @@ -157,9 +157,9 @@ static int rsnd_scu_start(struct rsnd_mod *mod,  	int ret;  	/* -	 * SCU will be used if it has RSND_SCU_USB_HPBIF flags +	 * SCU will be used if it has RSND_SCU_USE_HPBIF flags  	 */ -	if (!(flags & RSND_SCU_USB_HPBIF)) { +	if (!(flags & RSND_SCU_USE_HPBIF)) {  		/* it use PIO transter */  		dev_dbg(dev, "%s%d is not used\n",  			rsnd_mod_name(mod), rsnd_mod_id(mod));  |