All of lore.kernel.org
 help / color / mirror / Atom feed
* ASoC updates for 2.6.31
@ 2009-04-14 12:32 Mark Brown
  2009-04-14 12:32 ` [PATCH 01/14] ASoC: Add driver for s6000 I2S interface Mark Brown
                   ` (14 more replies)
  0 siblings, 15 replies; 19+ messages in thread
From: Mark Brown @ 2009-04-14 12:32 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

The following changes since commit 34e51ce60a210094bd66cf0a75dd8512247618ca:
  Takashi Iwai (1):
        Merge branch 'for-2.6.30' of git://git.kernel.org/.../broonie/sound-2.6 into topic/asoc

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git for-2.6.31

Alexander Beregalov (1):
      ASoC: n810: replace BUG() with BUG_ON()

Daniel Glöckner (3):
      ASoC: Add driver for s6000 I2S interface
      ASoC: s6105 IP camera machine specific ASoC code
      ASoC: correct s6000 I2S clock polarity

Daniel Ribeiro (1):
      ASoC: pxa-ssp.c fix clock/frame invert

Mark Brown (11):
      ASoC: Display return code when failing to add a DAPM kcontrol
      ASoC: Provide core support for symmetric sample rates
      ASoC: Add WM8988 CODEC driver
      Merge branch 's6000' into for-2.6.31
      ASoC: WM9713 requires symmetric rates on the voice DAI
      ASoC: Factor out application of power for generic widgets
      ASoC: Support DAPM events for DACs and ADCs
      ASoC: Move the WM9713 voice DAC powerdown to a DAPM event
      ASoC: Add WM8960 CODEC driver
      Merge branch 'for-2.6.30' into for-2.6.31
      Merge branch 'for-2.6.30' into for-2.6.31

Peter Ujfalusi (1):
      ASoC: tlv320aic23: add DSP_A format support

 include/sound/soc-dai.h        |    1 +
 include/sound/soc-dapm.h       |   10 +
 include/sound/soc.h            |    6 +
 sound/soc/Kconfig              |    1 +
 sound/soc/Makefile             |    1 +
 sound/soc/codecs/Kconfig       |    8 +
 sound/soc/codecs/Makefile      |    4 +
 sound/soc/codecs/tlv320aic23.c |    2 +
 sound/soc/codecs/wm8960.c      |  969 +++++++++++++++++++++++++++++++++++
 sound/soc/codecs/wm8960.h      |  127 +++++
 sound/soc/codecs/wm8988.c      | 1097 ++++++++++++++++++++++++++++++++++++++++
 sound/soc/codecs/wm8988.h      |   60 +++
 sound/soc/codecs/wm9713.c      |   40 +-
 sound/soc/omap/n810.c          |    7 +-
 sound/soc/pxa/pxa-ssp.c        |   11 +-
 sound/soc/s6000/Kconfig        |   19 +
 sound/soc/s6000/Makefile       |   11 +
 sound/soc/s6000/s6000-i2s.c    |  629 +++++++++++++++++++++++
 sound/soc/s6000/s6000-i2s.h    |   25 +
 sound/soc/s6000/s6000-pcm.c    |  497 ++++++++++++++++++
 sound/soc/s6000/s6000-pcm.h    |   35 ++
 sound/soc/s6000/s6105-ipcam.c  |  244 +++++++++
 sound/soc/soc-core.c           |   38 ++
 sound/soc/soc-dapm.c           |  131 +++---
 24 files changed, 3893 insertions(+), 80 deletions(-)
 create mode 100644 sound/soc/codecs/wm8960.c
 create mode 100644 sound/soc/codecs/wm8960.h
 create mode 100644 sound/soc/codecs/wm8988.c
 create mode 100644 sound/soc/codecs/wm8988.h
 create mode 100644 sound/soc/s6000/Kconfig
 create mode 100644 sound/soc/s6000/Makefile
 create mode 100644 sound/soc/s6000/s6000-i2s.c
 create mode 100644 sound/soc/s6000/s6000-i2s.h
 create mode 100644 sound/soc/s6000/s6000-pcm.c
 create mode 100644 sound/soc/s6000/s6000-pcm.h
 create mode 100644 sound/soc/s6000/s6105-ipcam.c

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

end of thread, other threads:[~2009-04-15  8:29 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-14 12:32 ASoC updates for 2.6.31 Mark Brown
2009-04-14 12:32 ` [PATCH 01/14] ASoC: Add driver for s6000 I2S interface Mark Brown
2009-04-14 12:33 ` [PATCH] mx31ads: Depend on all the WM8350 core dependencies for WM1133-EV1 board Mark Brown
2009-04-14 12:34   ` Mark Brown
2009-04-14 12:33 ` [PATCH 02/14] ASoC: s6105 IP camera machine specific ASoC code Mark Brown
2009-04-14 12:33 ` [PATCH 03/14] ASoC: correct s6000 I2S clock polarity Mark Brown
2009-04-14 12:33 ` [PATCH 04/14] ASoC: Display return code when failing to add a DAPM kcontrol Mark Brown
2009-04-14 12:33 ` [PATCH 05/14] ASoC: Provide core support for symmetric sample rates Mark Brown
2009-04-15  6:31   ` Peter Ujfalusi
2009-04-15  8:29     ` Mark Brown
2009-04-14 12:33 ` [PATCH 06/14] ASoC: Add WM8988 CODEC driver Mark Brown
2009-04-14 12:33 ` [PATCH 07/14] ASoC: tlv320aic23: add DSP_A format support Mark Brown
2009-04-14 12:33 ` [PATCH 08/14] ASoC: n810: replace BUG() with BUG_ON() Mark Brown
2009-04-14 12:33 ` [PATCH 09/14] ASoC: WM9713 requires symmetric rates on the voice DAI Mark Brown
2009-04-14 12:33 ` [PATCH 10/14] ASoC: Factor out application of power for generic widgets Mark Brown
2009-04-14 12:33 ` [PATCH 11/14] ASoC: Support DAPM events for DACs and ADCs Mark Brown
2009-04-14 12:33 ` [PATCH 12/14] ASoC: Move the WM9713 voice DAC powerdown to a DAPM event Mark Brown
2009-04-14 12:33 ` [PATCH 13/14] ASoC: pxa-ssp.c fix clock/frame invert Mark Brown
2009-04-14 12:33 ` [PATCH 14/14] ASoC: Add WM8960 CODEC driver 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.