Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@opensource.wolfsonmicro.com>
To: Takashi Iwai <tiwai@suse.de>
Cc: alsa-devel@alsa-project.org
Subject: ASoC updates for 2.6.31
Date: Tue, 14 Apr 2009 13:32:20 +0100	[thread overview]
Message-ID: <20090414123220.GA6342@rakim.wolfsonmicro.main> (raw)

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

             reply	other threads:[~2009-04-14 12:32 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-14 12:32 Mark Brown [this message]
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
  -- strict thread matches above, loose matches on Subject: below --
2009-04-16 13:50 ASoC updates for 2.6.31 Mark Brown
2009-04-16 14:06 ` Takashi Iwai
2009-04-20 11:58 Mark Brown
2009-04-20 12:05 ` Takashi Iwai
2009-04-23 19:54 Mark Brown
2009-04-24  6:10 ` Takashi Iwai
2009-04-28 15:22 Mark Brown
2009-05-05 10:01 Mark Brown
2009-05-05 10:45 ` Takashi Iwai
2009-05-08 12:57 Mark Brown
2009-05-08 14:37 ` Takashi Iwai
2009-05-12 10:25 Mark Brown
2009-05-15  8:23 ASoC updates for 2.6.30 Mark Brown
2009-05-15  8:26 ` ASoC updates for 2.6.31 Mark Brown
2009-05-15  8:34   ` Takashi Iwai
2009-05-18 15:04 Mark Brown
2009-05-18 15:16 ` Takashi Iwai
2009-05-19 19:27 Mark Brown
2009-05-19 19:39 ` Takashi Iwai
2009-05-22 20:21 Mark Brown
2009-05-22 20:34 ` Takashi Iwai
2009-05-25 12:07 Mark Brown
2009-05-25 12:29 ` Takashi Iwai
2009-05-27 10:48 Mark Brown
2009-05-27 13:58 ` Takashi Iwai
2009-05-28 18:04 Mark Brown
2009-05-28 18:12 ` Takashi Iwai
2009-06-03 10:51 Mark Brown
2009-06-03 11:02 ` Takashi Iwai
2009-06-21 13:15 Mark Brown
2009-06-22  6:20 ` Takashi Iwai
2009-06-25 13:09 Mark Brown
2009-06-25 13:35 ` Takashi Iwai
2009-07-01 20:45 Mark Brown
2009-07-02  8:55 ` Takashi Iwai
2009-07-06 20:49 Mark Brown
2009-07-07  5:56 ` Takashi Iwai
2009-07-10 19:25 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=20090414123220.GA6342@rakim.wolfsonmicro.main \
    --to=broonie@opensource.wolfsonmicro.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=tiwai@suse.de \
    /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