The following changes since commit 7ec41ee5ad5f716f67041c0d49014d0becb5332c:
ASoC: omap: Update e-mail address of Jarkko Nikula (2011-08-12 11:45:10 +0900)
are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git for-3.2
Axel Lin (2): ASoC: soc-io: Add CONFIG_REGMAP_I2C/CONFIG_REGMAP_SPI guards for regmap_init_i2c/regmap_init_spi ASoC: sgtl5000: fix module device table type for sgtl5000_dt_ids
Dong Aisheng (5): ASoC: mxs: add mxs-pcm driver ASoC: mxs: add mxs-saif driver ASoC: mxs: add mxs-sgtl5000 machine driver ASoC: mxs: add asoc configuration files ASoC: sgtl5000: add one missed cache reg
Liam Girdwood (2): ASoC: dapm - Add DAPM stream completion event. ASoC: dapm - change stream event dbg to vdgb
Manuel Lauss (6): ASoC: Alchemy AC97C/I2SC audio support ASoC: Add a DB1x00 AC97 machine driver ALSA: deprecate MIPS AU1X00 AC97 driver ASoC: au1x: remove automatic DMA device registration from PSC drivers ASoC: au1x: update db1200 machine to the new way of things ASoC: au1x: use substream stream info directly
Mark Brown (26): ASoC: Add device tree binding for WM8731 ASoC: Trivial formatting fix in soc-core.c ASoC: Implement new DC servo readback mode for late WM8994 revisions ASoC: Support separate left and right channel dcs_codes values ASoC: Parse board ID/revision information from WM1250-EV1 board ASoC: Remove -codec from WM8523 driver name ASoC: Remove redundant -codec from WM8580 driver name Merge branch 'for-3.1' into for-3.2 ASoC: Use new register map API for ASoC generic physical I/O ASoC: Add regmap as a control type Merge branch 'regmap-asoc' into for-3.2 ASoC: Remove unneeded -codec from WM8753 driver name Merge branch 'for-3.1' into for-3.2 ASoC: Update SMDKs for WM8580 -codec removal ASoC: Remove some more redundant -codecs from driver names Merge branch 'for-3.1' into for-3.2 ASoC: Refactor WM8741 regulator handling into CODEC generic code ASoC: Add SPI support for WM8741 ASoC: Fix warning in WM1250-EV1 driver Merge branch 'for-3.1' into for-3.2 ASoC: Specify register defaults for WM8958 MICBIAS1 and MICBIAS2 Merge branch 'for-3.1' into for-3.2 Merge branch 'for-3.1' into for-3.2 Merge branch 'for-3.1' into for-3.2 ASoC: Allow userspace control of Speyside headphone output ASoC: Add bitfield definitions for WM8958 MICBIAS registers
Shawn Guo (1): ASoC: sgtl5000: add device tree probe support
Stephen Warren (1): ASoC: soc-io: Fix CONFIG_REGMAP_I2C/SPI guards to support regmap modules
.../bindings/sound/soc/codecs/fsl-sgtl5000.txt | 11 + Documentation/devicetree/bindings/sound/wm8731.txt | 18 + arch/mips/alchemy/devboards/db1200/platform.c | 16 + arch/mips/alchemy/devboards/db1x00/platform.c | 48 ++ include/linux/mfd/wm8994/registers.h | 39 ++ include/sound/soc-dapm.h | 2 + include/sound/soc.h | 9 + sound/mips/Kconfig | 5 +- sound/soc/Kconfig | 3 + sound/soc/Makefile | 1 + sound/soc/au1x/Kconfig | 28 + sound/soc/au1x/Makefile | 10 + sound/soc/au1x/ac97c.c | 365 +++++++++++ sound/soc/au1x/db1000.c | 75 +++ sound/soc/au1x/db1200.c | 64 ++- sound/soc/au1x/dbdma2.c | 91 +--- sound/soc/au1x/dma.c | 377 +++++++++++ sound/soc/au1x/i2sc.c | 347 ++++++++++ sound/soc/au1x/psc-ac97.c | 48 +- sound/soc/au1x/psc-i2s.c | 42 +- sound/soc/au1x/psc.h | 16 +- sound/soc/codecs/sgtl5000.c | 8 + sound/soc/codecs/wm1250-ev1.c | 20 +- sound/soc/codecs/wm8523.c | 2 +- sound/soc/codecs/wm8580.c | 2 +- sound/soc/codecs/wm8711.c | 4 +- sound/soc/codecs/wm8728.c | 4 +- sound/soc/codecs/wm8731.c | 10 + sound/soc/codecs/wm8741.c | 126 +++- sound/soc/codecs/wm8753.c | 4 +- sound/soc/codecs/wm8993.c | 3 +- sound/soc/codecs/wm8994-tables.c | 4 +- sound/soc/codecs/wm8994.c | 6 +- sound/soc/codecs/wm_hubs.c | 32 +- sound/soc/codecs/wm_hubs.h | 3 +- sound/soc/mxs/Kconfig | 20 + sound/soc/mxs/Makefile | 10 + sound/soc/mxs/mxs-pcm.c | 359 +++++++++++ sound/soc/mxs/mxs-pcm.h | 43 ++ sound/soc/mxs/mxs-saif.c | 677 ++++++++++++++++++++ sound/soc/mxs/mxs-saif.h | 130 ++++ sound/soc/mxs/mxs-sgtl5000.c | 165 +++++ sound/soc/samsung/smdk_wm8580.c | 6 +- sound/soc/samsung/smdk_wm8580pcm.c | 4 +- sound/soc/samsung/speyside.c | 5 +- sound/soc/soc-core.c | 4 +- sound/soc/soc-dapm.c | 6 +- sound/soc/soc-io.c | 323 ++-------- 48 files changed, 3101 insertions(+), 494 deletions(-) create mode 100644 Documentation/devicetree/bindings/sound/soc/codecs/fsl-sgtl5000.txt create mode 100644 Documentation/devicetree/bindings/sound/wm8731.txt create mode 100644 sound/soc/au1x/ac97c.c create mode 100644 sound/soc/au1x/db1000.c create mode 100644 sound/soc/au1x/dma.c create mode 100644 sound/soc/au1x/i2sc.c create mode 100644 sound/soc/mxs/Kconfig create mode 100644 sound/soc/mxs/Makefile create mode 100644 sound/soc/mxs/mxs-pcm.c create mode 100644 sound/soc/mxs/mxs-pcm.h create mode 100644 sound/soc/mxs/mxs-saif.c create mode 100644 sound/soc/mxs/mxs-saif.h create mode 100644 sound/soc/mxs/mxs-sgtl5000.c