All of lore.kernel.org
 help / color / mirror / Atom feed
* ASoC updates
@ 2008-10-02 10:02 Mark Brown
  2008-10-02 10:02 ` [PATCH 1/5] ASoC: Add destination and source port for DMA on OMAP1 Mark Brown
  2008-10-02 10:36 ` ASoC updates Takashi Iwai
  0 siblings, 2 replies; 19+ messages in thread
From: Mark Brown @ 2008-10-02 10:02 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

The following changes since commit 2e2ed79f64e935540b0d148f7e2c3ebefafe133e:
  Vladimir Barinov (1):
        ALSA: Correct Vladimir Barinov's e-mail address

are available in the git repository at:

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

Of these only the patch from Rob is 2.6.27 material.

Arun KS (1):
      ASoC: Add destination and source port for DMA on OMAP1

Frank Mandarino (1):
      ASoC: Remove references to Endrelia ETI-B1 board

Jonas Bonn (2):
      ASoC: Add widgets before setting endpoints on GTA01
      ASoC: Drop device registration from GTA01 lm4857 driver

Rob Sims (1):
      ASoC: Set correct name for WM8753 rec mixer output

 sound/soc/at91/Kconfig             |   17 --
 sound/soc/at91/Makefile            |    5 -
 sound/soc/at91/eti_b1_wm8731.c     |  349 ------------------------------------
 sound/soc/codecs/wm8753.c          |    4 +-
 sound/soc/omap/omap-pcm.c          |    4 +-
 sound/soc/s3c24xx/neo1973_wm8753.c |   57 +-----
 6 files changed, 14 insertions(+), 422 deletions(-)
 delete mode 100644 sound/soc/at91/eti_b1_wm8731.c

^ permalink raw reply	[flat|nested] 19+ messages in thread
* ASoC updates
@ 2008-10-10 14:51 Mark Brown
  2008-10-11 15:34 ` Takashi Iwai
  0 siblings, 1 reply; 19+ messages in thread
From: Mark Brown @ 2008-10-10 14:51 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

The following changes since commit f79f27b5e79b9ae1e39d8376fd2ed956e3e02430:
  Takashi Iwai (1):
        ALSA: ASoC - clean up Kconfig for TLV320AIC2

are available in the git repository at:

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

Jarkko Nikula (3):
      ASoC: OMAP: Add multilink support to McBSP DAI driver
      ASoC: OMAP: Add support for OMAP2430 and OMAP34xx in McBSP DAI driver
      ASoC: OMAP: Set DMA stream name at runtime in McBSP DAI driver

Mark Brown (1):
      ASoC: Make TLV320AIC26 user-visible

 sound/soc/codecs/Kconfig    |    2 +-
 sound/soc/omap/omap-mcbsp.c |  176 ++++++++++++++++++++++++++++++-------------
 sound/soc/omap/omap-mcbsp.h |   16 +++-
 3 files changed, 134 insertions(+), 60 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread
* [PATCHv2 1/1] Fix a Oops bug in omap soc driver.
@ 2008-12-19 14:08 Stanley.Miao
  2008-12-19 14:35 ` Jarkko Nikula
  0 siblings, 1 reply; 19+ messages in thread
From: Stanley.Miao @ 2008-12-19 14:08 UTC (permalink / raw)
  To: alsa-devel; +Cc: linux-omap

There will be a Oops or frequent underrun messages when playing music with
omap soc driver, this is because a data region is incorretly sized, other data
region will be overwriten when writing to this data region.

Signed-off-by: Stanley.Miao <stanley.miao@windriver.com>
---
 sound/soc/omap/omap-pcm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/soc/omap/omap-pcm.c b/sound/soc/omap/omap-pcm.c
index ce580a9..2adfbce 100644
--- a/sound/soc/omap/omap-pcm.c
+++ b/sound/soc/omap/omap-pcm.c
@@ -233,7 +233,7 @@ static int omap_pcm_open(struct snd_pcm_substream *substream)
 	if (ret < 0)
 		goto out;
 
-	prtd = kzalloc(sizeof(prtd), GFP_KERNEL);
+	prtd = kzalloc(sizeof(struct omap_runtime_data), GFP_KERNEL);
 	if (prtd == NULL) {
 		ret = -ENOMEM;
 		goto out;
-- 
1.5.6.3

^ permalink raw reply related	[flat|nested] 19+ messages in thread
* ASoC updates
@ 2009-01-05 17:56 Mark Brown
  2009-01-05 20:53 ` Takashi Iwai
  0 siblings, 1 reply; 19+ messages in thread
From: Mark Brown @ 2009-01-05 17:56 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

The following changes since commit cad9d90ec3f6c497dce2b163046436b6ab5cf6b6:
  Takashi Iwai (1):
        Merge branch 'fixes' 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-tiwai

David Brownell (1):
      ASoC: Clocking fixes for davinci-evm.c

Dmitry Baryshkov (1):
      pxa2xx-ac97: switch AC unit to correct state before probing

Grazvydas Ignotas (1):
      ASoC: Mark non-connected TWL4030 pins for pandora

Jarkko Nikula (1):
      ASoC: OMAP: Select OMAP pin multiplexing when using Nokia N810 ASoC drivers

Peter Ujfalusi (2):
      ASoC: New enum type: value_enum
      ASoC: TWL4030: Convert the bitfield enums to VALUE_ENUM type

 include/sound/soc-dapm.h        |   15 +++
 include/sound/soc.h             |   30 ++++++
 sound/arm/pxa2xx-ac97-lib.c     |   25 +++--
 sound/soc/codecs/twl4030.c      |  118 +++++++++++-------------
 sound/soc/davinci/davinci-evm.c |   19 +++-
 sound/soc/omap/Kconfig          |    1 +
 sound/soc/omap/omap3pandora.c   |   13 +++
 sound/soc/soc-core.c            |  107 +++++++++++++++++++++
 sound/soc/soc-dapm.c            |  197 ++++++++++++++++++++++++++++++++++++++-
 9 files changed, 447 insertions(+), 78 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread
* ASoC updates
@ 2009-01-27 20:03 Mark Brown
  2009-01-28  8:11 ` Takashi Iwai
  0 siblings, 1 reply; 19+ messages in thread
From: Mark Brown @ 2009-01-27 20:03 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

The following changes since commit 070504ade7a95a0f4395673717f3bb7d41793ca8:
  Mark Brown (1):
        ASoC: Fix L3 bus handling in Kconfig

are available in the git repository at:

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

Mark Brown (1):
      ASoC: Push the codec runtime storage into the card structure

Peter Ujfalusi (5):
      ASoC: TWL4030: Syncronize the reg_cache for ANAMICL after the offset cancelation
      ASoC: TWL4030: Code clean up for codec power up and down
      ASoC: TWL4030: Enable Headset Left anti-pop/bias ramp only if the Headset Left is in use
      ASoC: TWL4030: Physical ADC and amplifier power switch change
      ASoC: TWL4030: Move the twl4030_power_up and _power_down function

Timur Tabi (1):
      ASoC: improve I2C initialization code in CS4270 driver

 include/sound/soc.h            |    3 +-
 sound/soc/codecs/ac97.c        |   20 ++--
 sound/soc/codecs/ad1980.c      |   12 +-
 sound/soc/codecs/ad73311.c     |    8 +-
 sound/soc/codecs/ak4535.c      |   14 +-
 sound/soc/codecs/cs4270.c      |  254 ++++++++++++++++++----------------------
 sound/soc/codecs/pcm3008.c     |   12 +-
 sound/soc/codecs/ssm2602.c     |   20 ++--
 sound/soc/codecs/tlv320aic23.c |   18 ++--
 sound/soc/codecs/tlv320aic26.c |    4 +-
 sound/soc/codecs/tlv320aic3x.c |   14 +-
 sound/soc/codecs/twl4030.c     |  224 +++++++++++++++++++-----------------
 sound/soc/codecs/uda134x.c     |   18 ++--
 sound/soc/codecs/uda1380.c     |   18 ++--
 sound/soc/codecs/wm8350.c      |   10 +-
 sound/soc/codecs/wm8510.c      |   16 ++--
 sound/soc/codecs/wm8580.c      |   10 +-
 sound/soc/codecs/wm8728.c      |   16 ++--
 sound/soc/codecs/wm8731.c      |   20 ++--
 sound/soc/codecs/wm8750.c      |   16 ++--
 sound/soc/codecs/wm8753.c      |   18 ++--
 sound/soc/codecs/wm8900.c      |    8 +-
 sound/soc/codecs/wm8903.c      |   18 ++--
 sound/soc/codecs/wm8971.c      |   14 +-
 sound/soc/codecs/wm8990.c      |   14 +-
 sound/soc/codecs/wm9705.c      |   15 ++-
 sound/soc/codecs/wm9712.c      |   21 ++--
 sound/soc/codecs/wm9713.c      |   17 ++--
 sound/soc/soc-core.c           |   37 +++---
 sound/soc/soc-dapm.c           |    6 +-
 sound/soc/soc-jack.c           |    4 +-
 31 files changed, 443 insertions(+), 456 deletions(-)

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

end of thread, other threads:[~2009-01-28  8:11 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-02 10:02 ASoC updates Mark Brown
2008-10-02 10:02 ` [PATCH 1/5] ASoC: Add destination and source port for DMA on OMAP1 Mark Brown
2008-10-02 10:02   ` [PATCH 2/5] ASoC: Remove references to Endrelia ETI-B1 board Mark Brown
2008-10-02 10:02     ` [PATCH 3/5] ASoC: Add widgets before setting endpoints on GTA01 Mark Brown
2008-10-02 10:02       ` [PATCH 4/5 2.6.27?] ASoC: Set correct name for WM8753 rec mixer output Mark Brown
2008-10-02 10:02         ` [PATCH 5/5] ASoC: Drop device registration from GTA01 lm4857 driver Mark Brown
2008-10-02 10:36 ` ASoC updates Takashi Iwai
  -- strict thread matches above, loose matches on Subject: below --
2008-10-10 14:51 Mark Brown
2008-10-11 15:34 ` Takashi Iwai
2008-12-19 14:08 [PATCHv2 1/1] Fix a Oops bug in omap soc driver Stanley.Miao
2008-12-19 14:35 ` Jarkko Nikula
2008-12-19 14:39   ` [alsa-devel] " Takashi Iwai
2008-12-20 13:51     ` ASoC updates Mark Brown
2008-12-20 14:11       ` SUBHRANIL CHOUDHURY
2008-12-20 14:58         ` Sean McNamara
2008-12-20 15:47       ` Takashi Iwai
2009-01-05 17:56 Mark Brown
2009-01-05 20:53 ` Takashi Iwai
2009-01-05 21:09   ` Mark Brown
2009-01-06  8:45     ` Takashi Iwai
2009-01-27 20:03 Mark Brown
2009-01-28  8:11 ` Takashi Iwai

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.