All of 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: [PATCH 00/18] ASoC updates
Date: Tue, 9 Dec 2008 14:01:01 +0000	[thread overview]
Message-ID: <20081209140101.GA17558@rakim.wolfsonmicro.main> (raw)

The following changes since commit 28a1d869560a49d960ba2a3b450ec965712e5560:
  Daniel Mack (1):
        ASoC: tlv320aic3x: control additions and cleanups

are available in the git repository at:

  git://opensource.wolfsonmicro.com/linux-2.6-asoc for-tiwai

Mark Brown (9):
      ASoC: Add card registration API
      ASoC: Add DAI registration API
      ASoC: Register platform DAIs
      ASoC: Add platform registration API
      ASoC: Register platform drivers
      ASoC: Register non-AC97 codec DAIs
      ASoC: Initial framework for dynamic card instantiation
      ASoC: Wait for non-AC97 codec DAIs before instantiating
      ASoC: Convert WM8900 to allow registration by machine code

Peter Ujfalusi (9):
      ASoC: TWL4030: Correct DAPM_DAC with power control
      ASoC: TWL4030: Add Analog PGA control switch to DAPM
      ASoC: TWL4030: Add DAPM event handler for output MUX selection
      ASoC: TWL4030: DAPM mapping of the Earpiece output
      ASoC: TWL4030: DAPM mapping of the PreDriv outputs
      ASoC: TWL4030: DAPM mapping of the Headset outputs
      ASoC: TWL4030: DAPM mapping of the Carkit outputs
      ASoC: TWL4030: DAPM mapping of the Handsfree outputs
      ASoC: TWL4030: Do not alter the Headset output volume on power-up/down

 include/sound/soc-dai.h             |    8 +
 include/sound/soc.h                 |   10 ++
 sound/soc/atmel/atmel-pcm.c         |   12 ++
 sound/soc/atmel/atmel_ssc_dai.c     |   11 ++
 sound/soc/au1x/dbdma2.c             |    3 +-
 sound/soc/au1x/psc-ac97.c           |    3 +-
 sound/soc/au1x/psc-i2s.c            |    3 +-
 sound/soc/blackfin/bf5xx-ac97-pcm.c |   12 ++
 sound/soc/blackfin/bf5xx-ac97.c     |   12 ++
 sound/soc/blackfin/bf5xx-i2s-pcm.c  |   12 ++
 sound/soc/blackfin/bf5xx-i2s.c      |   12 ++
 sound/soc/codecs/ad73311.c          |   12 ++
 sound/soc/codecs/ak4535.c           |   12 ++
 sound/soc/codecs/cs4270.c           |   12 ++
 sound/soc/codecs/pcm3008.c          |   12 ++
 sound/soc/codecs/ssm2602.c          |   12 ++
 sound/soc/codecs/tlv320aic23.c      |   12 ++
 sound/soc/codecs/tlv320aic26.c      |   15 ++-
 sound/soc/codecs/tlv320aic3x.c      |   12 ++
 sound/soc/codecs/twl4030.c          |  277 +++++++++++++++++++++++++++++++--
 sound/soc/codecs/uda134x.c          |   12 ++
 sound/soc/codecs/uda1380.c          |   12 ++
 sound/soc/codecs/wm8510.c           |   12 ++
 sound/soc/codecs/wm8580.c           |   12 ++
 sound/soc/codecs/wm8728.c           |   12 ++
 sound/soc/codecs/wm8731.c           |   12 ++
 sound/soc/codecs/wm8750.c           |   12 ++
 sound/soc/codecs/wm8753.c           |   12 ++
 sound/soc/codecs/wm8900.c           |  105 ++++---------
 sound/soc/codecs/wm8903.c           |   12 ++
 sound/soc/codecs/wm8971.c           |   12 ++
 sound/soc/codecs/wm8990.c           |   12 ++
 sound/soc/davinci/davinci-i2s.c     |   12 ++
 sound/soc/davinci/davinci-pcm.c     |   12 ++
 sound/soc/fsl/fsl_dma.c             |   12 ++
 sound/soc/fsl/fsl_ssi.c             |   10 ++
 sound/soc/fsl/mpc5200_psc_i2s.c     |    4 +
 sound/soc/omap/omap-mcbsp.c         |   13 ++
 sound/soc/omap/omap-pcm.c           |   12 ++
 sound/soc/pxa/pxa-ssp.c             |   12 ++
 sound/soc/pxa/pxa2xx-ac97.c         |   12 ++
 sound/soc/pxa/pxa2xx-i2s.c          |   13 ++-
 sound/soc/pxa/pxa2xx-pcm.c          |   12 ++
 sound/soc/s3c24xx/s3c2412-i2s.c     |   13 ++
 sound/soc/s3c24xx/s3c2443-ac97.c    |   13 ++
 sound/soc/s3c24xx/s3c24xx-i2s.c     |   12 ++
 sound/soc/s3c24xx/s3c24xx-pcm.c     |   12 ++
 sound/soc/sh/dma-sh7760.c           |   12 ++
 sound/soc/sh/hac.c                  |   12 ++
 sound/soc/sh/ssi.c                  |   12 ++
 sound/soc/soc-core.c                |  291 +++++++++++++++++++++++++++++++++--
 51 files changed, 1102 insertions(+), 110 deletions(-)

             reply	other threads:[~2008-12-09 14:01 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-09 14:01 Mark Brown [this message]
2008-12-09 14:01 ` [PATCH 01/18] ASoC: TWL4030: Correct DAPM_DAC with power control Mark Brown
2008-12-09 14:01   ` [PATCH 02/18] ASoC: TWL4030: Add Analog PGA control switch to DAPM Mark Brown
2008-12-09 14:01     ` [PATCH 03/18] ASoC: TWL4030: Add DAPM event handler for output MUX selection Mark Brown
2008-12-09 14:01       ` [PATCH 04/18] ASoC: TWL4030: DAPM mapping of the Earpiece output Mark Brown
2008-12-09 14:01         ` [PATCH 05/18] ASoC: TWL4030: DAPM mapping of the PreDriv outputs Mark Brown
2008-12-09 14:01           ` [PATCH 06/18] ASoC: TWL4030: DAPM mapping of the Headset outputs Mark Brown
2008-12-09 14:01             ` [PATCH 07/18] ASoC: TWL4030: DAPM mapping of the Carkit outputs Mark Brown
2008-12-09 14:01               ` [PATCH 08/18] ASoC: TWL4030: DAPM mapping of the Handsfree outputs Mark Brown
2008-12-09 14:01                 ` [PATCH 09/18] ASoC: TWL4030: Do not alter the Headset output volume on power-up/down Mark Brown
2008-12-09 14:01                   ` [PATCH 10/18] ASoC: Add card registration API Mark Brown
2008-12-09 14:01                     ` [PATCH 11/18] ASoC: Add DAI " Mark Brown
2008-12-09 14:01                       ` [PATCH 12/18] ASoC: Register platform DAIs Mark Brown
2008-12-09 14:01                         ` [PATCH 13/18] ASoC: Add platform registration API Mark Brown
2008-12-09 14:01                           ` [PATCH 14/18] ASoC: Register platform drivers Mark Brown
2008-12-09 14:01                             ` [PATCH 15/18] ASoC: Register non-AC97 codec DAIs Mark Brown
2008-12-09 14:01                               ` [PATCH 16/18] ASoC: Initial framework for dynamic card instantiation Mark Brown
2008-12-09 14:01                                 ` [PATCH 17/18] ASoC: Wait for non-AC97 codec DAIs before instantiating Mark Brown
2008-12-09 14:01                                   ` [PATCH 18/18] ASoC: Convert WM8900 to allow registration by machine code Mark Brown
2008-12-09 14:38                             ` [PATCH 14/18] ASoC: Register platform drivers Takashi Iwai
2008-12-09 14:40                         ` [PATCH 12/18] ASoC: Register platform DAIs Takashi Iwai
2008-12-09 14:17                     ` [PATCH 10/18] ASoC: Add card registration API Takashi Iwai
2008-12-09 14:24                       ` Takashi Iwai
2008-12-10  8:27             ` [PATCH 06/18] ASoC: TWL4030: DAPM mapping of the Headset outputs stanley.miao
2008-12-10  9:19               ` Peter Ujfalusi
2008-12-09 14:39 ` [PATCH 00/18] ASoC updates Takashi Iwai
2008-12-09 15:01   ` Mark Brown
2008-12-09 15:03     ` [PATCH] ASoC: Fix typos in Atmel module registration Mark Brown
2008-12-09 15:06     ` [PATCH 00/18] ASoC updates Takashi Iwai

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=20081209140101.GA17558@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 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.