All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] ASoC updates
@ 2008-11-19 13:34 Mark Brown
  2008-11-19 13:36 ` [PATCH 1/6] ASoC: Remove unused snd_soc_machine_config declaration Mark Brown
  2008-11-19 13:48 ` [PATCH 0/6] ASoC updates Takashi Iwai
  0 siblings, 2 replies; 10+ messages in thread
From: Mark Brown @ 2008-11-19 13:34 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

The following changes since commit 72f2b894455775b980a5ac7ae70ab560b3d3d247:
  Mark Brown (1):
        ASoC: Move uda134x_codec.h to uda134x.h

are available in the git repository at:

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

Arun KS (1):
      ASoC: Add support for omap2evm board

Hugo Villeneuve (2):
      ASoC: Add PCM3008 ALSA SoC driver
      ASoC: Add driver for the Lyrtech SFFSDR board

Mark Brown (3):
      ASoC: Remove unused snd_soc_machine_config declaration
      ASoC: s3c24xx_uda134x DAI accessor functions and static cleanup
      ASoC: Convert blackfin machines to use DAI accessor functions

 include/sound/soc.h                 |    1 -
 sound/soc/blackfin/bf5xx-ad73311.c  |    2 +-
 sound/soc/blackfin/bf5xx-ssm2602.c  |    6 +-
 sound/soc/codecs/Kconfig            |    4 +
 sound/soc/codecs/Makefile           |    2 +
 sound/soc/codecs/pcm3008.c          |  201 +++++++++++++++++++++++++++++++++++
 sound/soc/codecs/pcm3008.h          |   25 +++++
 sound/soc/davinci/Kconfig           |   10 ++
 sound/soc/davinci/Makefile          |    2 +
 sound/soc/davinci/davinci-sffsdr.c  |  156 +++++++++++++++++++++++++++
 sound/soc/omap/Kconfig              |    9 ++
 sound/soc/omap/Makefile             |    2 +
 sound/soc/omap/omap2evm.c           |  150 ++++++++++++++++++++++++++
 sound/soc/s3c24xx/s3c24xx_uda134x.c |   27 +++---
 14 files changed, 578 insertions(+), 19 deletions(-)
 create mode 100644 sound/soc/codecs/pcm3008.c
 create mode 100644 sound/soc/codecs/pcm3008.h
 create mode 100644 sound/soc/davinci/davinci-sffsdr.c
 create mode 100644 sound/soc/omap/omap2evm.c

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH 0/6] ASoC updates
@ 2008-09-15 13:24 Mark Brown
  2008-09-15 18:12 ` Takashi Iwai
  0 siblings, 1 reply; 10+ messages in thread
From: Mark Brown @ 2008-09-15 13:24 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel

The following changes since commit 3e3b5651631629482e0e1541f8c4298a435bb100:
  Mark Brown (1):
        ALSA: ASoC: Use codec digital mute when stopping playback

are available in the git repository at:

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

Alan Horstmann (1):
      ASoC: Fix WM8731 SPI write

Dmitry Baryshkov (4):
      ASoC: Support runtime selection of CPU in pxa2xx-i2s
      ALSA: Separate common pxa2xx-ac97 code
      ALSA: pxa2xx-ac97-lib: support building for several CPUs
      ALSA: Separate common pxa2xx-pcm code

Kenneth Kiraly (1):
      ASoC: Add WM8971 CODEC driver

 include/sound/pxa2xx-lib.h  |   45 ++
 sound/arm/Kconfig           |    9 +
 sound/arm/Makefile          |    4 +
 sound/arm/pxa2xx-ac97-lib.c |  384 ++++++++++++++++++
 sound/arm/pxa2xx-ac97.c     |  247 +-----------
 sound/arm/pxa2xx-pcm-lib.c  |  278 +++++++++++++
 sound/arm/pxa2xx-pcm.c      |  252 +-----------
 sound/arm/pxa2xx-pcm.h      |   13 +-
 sound/soc/codecs/Kconfig    |    4 +
 sound/soc/codecs/Makefile   |    2 +
 sound/soc/codecs/wm8731.c   |    5 +-
 sound/soc/codecs/wm8971.c   |  942 +++++++++++++++++++++++++++++++++++++++++++
 sound/soc/codecs/wm8971.h   |   64 +++
 sound/soc/pxa/Kconfig       |    3 +
 sound/soc/pxa/pxa2xx-ac97.c |  272 +------------
 sound/soc/pxa/pxa2xx-i2s.c  |   20 +-
 sound/soc/pxa/pxa2xx-pcm.c  |  261 +------------
 sound/soc/pxa/pxa2xx-pcm.h  |   15 -
 18 files changed, 1802 insertions(+), 1018 deletions(-)
 create mode 100644 include/sound/pxa2xx-lib.h
 create mode 100644 sound/arm/pxa2xx-ac97-lib.c
 create mode 100644 sound/arm/pxa2xx-pcm-lib.c
 create mode 100644 sound/soc/codecs/wm8971.c
 create mode 100644 sound/soc/codecs/wm8971.h

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

end of thread, other threads:[~2008-11-19 13:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-19 13:34 [PATCH 0/6] ASoC updates Mark Brown
2008-11-19 13:36 ` [PATCH 1/6] ASoC: Remove unused snd_soc_machine_config declaration Mark Brown
2008-11-19 13:36   ` [PATCH 2/6] ASoC: Add PCM3008 ALSA SoC driver Mark Brown
2008-11-19 13:36     ` [PATCH 3/6] ASoC: Add driver for the Lyrtech SFFSDR board Mark Brown
2008-11-19 13:36       ` [PATCH 4/6] ASoC: Add support for omap2evm board Mark Brown
2008-11-19 13:36         ` [PATCH 5/6] ASoC: s3c24xx_uda134x DAI accessor functions and static cleanup Mark Brown
2008-11-19 13:36           ` [PATCH 6/6] ASoC: Convert blackfin machines to use DAI accessor functions Mark Brown
2008-11-19 13:48 ` [PATCH 0/6] ASoC updates Takashi Iwai
  -- strict thread matches above, loose matches on Subject: below --
2008-09-15 13:24 Mark Brown
2008-09-15 18:12 ` 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.