From: Mika Westerberg <mika.westerberg@iki.fi>
To: alsa-devel@alsa-project.org
Cc: rmallon@gmail.com, Mika Westerberg <mika.westerberg@iki.fi>,
broonie@opensource.wolfsonmicro.com,
hsweeten@visionengravers.com, lrg@ti.com,
linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/7] ASoC: ep93xx: convert to use snd_soc_register_card()
Date: Sun, 11 Sep 2011 12:28:48 +0300 [thread overview]
Message-ID: <cover.1315732452.git.mika.westerberg@iki.fi> (raw)
Here is a series of patches which convert ep93xx ASoC drivers to use
snd_soc_register_card(). This has the advantage that the machine drivers get
loaded automatically by udev. Also this gets rid of machine_is_xxx() from the
machine drivers.
Tested on Sim.One. The edb93xx and snappercl15 changes are compile tested
only.
Mika Westerberg (7):
ASoC: ep93xx-pcm: add MODULE_ALIAS
ASoC: simone: convert to use snd_soc_register_card()
ASoC: edb93xx: convert to use snd_soc_register_card()
ASoC: snappercl15: convert to use snd_soc_register_card()
ARM: ep93xx: simone: register audio platform device
ARM: ep93xx: edb93xx: register audio platform device
ARM: ep93xx: snappercl15: register audio platform device
arch/arm/mach-ep93xx/edb93xx.c | 6 +++
arch/arm/mach-ep93xx/simone.c | 13 +++++++-
arch/arm/mach-ep93xx/snappercl15.c | 13 +++++++-
sound/soc/ep93xx/edb93xx.c | 60 ++++++++++++++++++---------------
sound/soc/ep93xx/ep93xx-pcm.c | 1 +
sound/soc/ep93xx/simone.c | 64 ++++++++++++++++++++----------------
sound/soc/ep93xx/snappercl15.c | 53 ++++++++++++++++++++---------
7 files changed, 136 insertions(+), 74 deletions(-)
--
1.7.5.4
WARNING: multiple messages have this Message-ID (diff)
From: mika.westerberg@iki.fi (Mika Westerberg)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 0/7] ASoC: ep93xx: convert to use snd_soc_register_card()
Date: Sun, 11 Sep 2011 12:28:48 +0300 [thread overview]
Message-ID: <cover.1315732452.git.mika.westerberg@iki.fi> (raw)
Here is a series of patches which convert ep93xx ASoC drivers to use
snd_soc_register_card(). This has the advantage that the machine drivers get
loaded automatically by udev. Also this gets rid of machine_is_xxx() from the
machine drivers.
Tested on Sim.One. The edb93xx and snappercl15 changes are compile tested
only.
Mika Westerberg (7):
ASoC: ep93xx-pcm: add MODULE_ALIAS
ASoC: simone: convert to use snd_soc_register_card()
ASoC: edb93xx: convert to use snd_soc_register_card()
ASoC: snappercl15: convert to use snd_soc_register_card()
ARM: ep93xx: simone: register audio platform device
ARM: ep93xx: edb93xx: register audio platform device
ARM: ep93xx: snappercl15: register audio platform device
arch/arm/mach-ep93xx/edb93xx.c | 6 +++
arch/arm/mach-ep93xx/simone.c | 13 +++++++-
arch/arm/mach-ep93xx/snappercl15.c | 13 +++++++-
sound/soc/ep93xx/edb93xx.c | 60 ++++++++++++++++++---------------
sound/soc/ep93xx/ep93xx-pcm.c | 1 +
sound/soc/ep93xx/simone.c | 64 ++++++++++++++++++++----------------
sound/soc/ep93xx/snappercl15.c | 53 ++++++++++++++++++++---------
7 files changed, 136 insertions(+), 74 deletions(-)
--
1.7.5.4
next reply other threads:[~2011-09-11 9:29 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-11 9:28 Mika Westerberg [this message]
2011-09-11 9:28 ` [PATCH 0/7] ASoC: ep93xx: convert to use snd_soc_register_card() Mika Westerberg
2011-09-11 9:28 ` [PATCH 1/7] ASoC: ep93xx-pcm: add MODULE_ALIAS Mika Westerberg
2011-09-11 9:28 ` Mika Westerberg
2011-09-11 9:28 ` [PATCH 2/7] ASoC: simone: convert to use snd_soc_register_card() Mika Westerberg
2011-09-11 9:28 ` Mika Westerberg
2011-09-11 9:28 ` [PATCH 3/7] ASoC: edb93xx: " Mika Westerberg
2011-09-11 9:28 ` Mika Westerberg
2011-09-16 16:45 ` Alexander Sverdlin
2011-09-16 16:45 ` Alexander Sverdlin
2011-09-17 6:52 ` Mika Westerberg
2011-09-17 6:52 ` Mika Westerberg
2011-09-17 11:58 ` Alexander Sverdlin
2011-09-17 11:58 ` Alexander Sverdlin
2011-09-18 7:38 ` Mika Westerberg
2011-09-18 7:38 ` Mika Westerberg
2011-09-18 11:43 ` Alexander Sverdlin
2011-09-18 11:43 ` Alexander Sverdlin
2011-09-11 9:28 ` [PATCH 4/7] ASoC: snappercl15: " Mika Westerberg
2011-09-11 9:28 ` Mika Westerberg
2011-09-11 9:28 ` [PATCH 5/7] ARM: ep93xx: simone: register audio platform device Mika Westerberg
2011-09-11 9:28 ` Mika Westerberg
2011-09-11 9:28 ` [PATCH 6/7] ARM: ep93xx: edb93xx: " Mika Westerberg
2011-09-11 9:28 ` Mika Westerberg
2011-09-11 9:28 ` [PATCH 7/7] ARM: ep93xx: snappercl15: " Mika Westerberg
2011-09-11 9:28 ` Mika Westerberg
2011-09-11 23:15 ` [PATCH 0/7] ASoC: ep93xx: convert to use snd_soc_register_card() Ryan Mallon
2011-09-11 23:15 ` Ryan Mallon
2011-09-12 4:55 ` Girdwood, Liam
2011-09-12 10:19 ` Mark Brown
2011-09-12 10:19 ` Mark Brown
2011-09-12 15:59 ` Mika Westerberg
2011-09-12 15:59 ` Mika Westerberg
2011-09-12 20:33 ` H Hartley Sweeten
2011-09-12 20:33 ` H Hartley Sweeten
2011-09-13 17:44 ` Mika Westerberg
2011-09-13 17:44 ` Mika Westerberg
2011-09-16 9:12 ` Mark Brown
2011-09-16 9:12 ` 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=cover.1315732452.git.mika.westerberg@iki.fi \
--to=mika.westerberg@iki.fi \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=hsweeten@visionengravers.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=lrg@ti.com \
--cc=rmallon@gmail.com \
/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.